Is there a way to use the \"NOT IN (select XXX...)\" clause in Linq to Entities? All the questions I found were regarding a list of objects (IN (1,2,3)) but I want to ge
Like this:
from c in db.Customers where !db.Products.Any(p => p.ProductID == c.ProductID) select c;