I am using EF4, and I using the System.Data.Entity dll in my class. However, I can’t see the load method of my navigation property of my entity.
How can I access to this method?
What I am doing is create e 4.0 project of .NET, create my edmx from a database, right click in the model edmx and I generate a DBContext.
However, I can access to the local property of my context, that I think that is a feature of EF4.
Thanks.
Daimroc.
For the
DbContextapproach, theIsLoadedproperty andLoadmethod have been moved:Entrymethod: http://msdn.microsoft.com/en-us/library/gg696578(v=vs.103).aspxCollectionmethod: http://msdn.microsoft.com/en-us/library/gg671324(v=vs.103).aspxIsLoadedproperty: http://msdn.microsoft.com/en-us/library/gg696146(v=vs.103).aspxLoadmethod: http://msdn.microsoft.com/en-us/library/gg696220(v=vs.103).aspx