May 2010
Intermediate to advanced
1272 pages
61h 18m
English
LINQ to Entities is the standard LINQ provider for querying entities within an Entity Data Model. Generally you use the same LINQ syntax for querying Entities, too, so you will not encounter particular difficulties.
The one big difference is about eager loading that is explained after showing the code. As in LINQ to SQL, LINQ to Entities queries return an IQueryable(Of T), unless you convert the result into a different type using extension methods at the end of the query. The following code returns the list of products for the specified category, ...
Read now
Unlock full access