Search Results

3
votes

Entity Framework - how do I use the entity associations?

Entity Framework does not load related entities unless you tell it to. In order to access related entities you need to either Load() them explicitly or use Include(). Here's a short sample. …
0
votes

Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)

The previous rev of this answer is incorrect as pointed out by Craig in the comments. Since I can't delete this answer (because of comments?) I'll at least try to leave something that's not incorre …