Product
+------------+-------------+------------+
| PID | Name | Model |
+------------+-------------+------------+
| 1 | Mercedes | xyz |
| 2 | Audi | yxz |
| 3 | BMW | zyx |
+------------+-------------+------------+
ProductColor
+------------+-------------+------------+
| ID | ProductID | Color |
+------------+-------------+------------+
| 1 | 1 | Red |
| 2 | 1 | Blue |
| 3 | 3 | Blue |
+------------+-------------+------------+
我需要从 ProductColor 中选择 ProductID,其中蓝色和红色?如何编写正确的 Linq 查询?