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 |
+------------+-------------+------------+
I need to select ProductID's from ProductColor where blue AND red? How to write correct Linq Query?