July 2015
Intermediate to advanced
1300 pages
87h 27m
English
LINQ to Entities is the standard LINQ provider for querying entities within an Entity Data Model. You use the same LINQ syntax for querying entities, too, so you will not encounter particular difficulties.
Using Standard Query Operators
LINQ to Entities supports standard query operators described in Chapter 23, “LINQ to Objects,” to perform complex query expressions.
The one big difference is about eager loading, which 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, taking ...