Tip 1 – How to sort Relationships in Entity Framework – Meta-Me …
Feb. 25, 2009 No Comments Posted under: Relationships
Most of you probably know that the EF can eagerly load a relationship using Include(). For example something like this: var lateCustomers = from c in ctx.Customers.Include(“Orders”) where c.IsMoreThan30DaysInArrears select c; …
