This post is a part of the series that describes EFLazyLoading library.
- Part 1 – Strategies for implementing lazy loading
- Part 2 – Implementation of EFLazyLoading
- Part 3 – Anatomy of a Stub
The first release of Entity Framework supports explicit loading. This means that if you are navigating a relationship, you have to make sure it is loaded by explicitly calling Load()on EntityReference or EntityCollection objects, or pre-loading your relationships by using Include() on your query. […]