Reputation: 16018
Does anyone know where I can get a full list of supported statements for linq to entities, this is statements that will be translated and run on the database...?
Upvotes: 9
Views: 130
Reputation: 1935
You can use All, Any, Concat, Contains, DefaultIfEmpty, Distinct, EqualAll, Except, Intersect, and Union methods. For details please see: Standard Query Operators in LINQ to Entities Queries
For a broader perspective see : LINQ to Entities
Upvotes: 1