I have a list of Products like this
var r = db.Products.Where(x => x.Sites
.Where(z => z.Key == associatedProducts.Key)
.Any()
).ToList()
There is an entity called Products, I want to get all elements from products except those exist in associatedProducts.Products
How can i do that ?