Richard Friend
Richard Friend

Reputation: 16018

What statements does Linq to entities support?

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

Answers (1)

Syed Osama Maruf
Syed Osama Maruf

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

Related Questions