I'm using EF 4.1 and code-first in an MVC project, and AutoMapper to map entities to view models.

Prior to using code-first I was able to exclude navigation properties in order to prevent anything from being loaded that wasn't already. I'm using .Include() in my queries to include the references that I need in order to avoid additional database round-trips.

However, with code-first my entity only exposes an entity property (or ICollection if there are more than one). How can I know whether it has been loaded without triggering the load?

Assuming this can be done, is there a way to make this the default behavior for AutoMapper, so that I do not have to explicitly exclude members on every single entity?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

You can check whether a reference or collection navigation property of an entity has been loaded by:

bool isLoaded1 = dbContext.Entry(entity).Reference(e => e.MyReferenceProperty)
                     .IsLoaded();
bool isLoaded2 = dbContext.Entry(entity).Collection(e => e.MyCollectionProperty)
                     .IsLoaded();
link|improve this answer
Thanks, that is just what I need. Too bad that I need the context around, may have to add some helpers on my repository for that instead. – Morten Mertner Mar 20 '11 at 16:49
feedback

You should be able to explicitly load them by turning off lazy-loading:

using(var context = new FooBarEntities())
{
  context.ContextOptions.LazyLoadingEnabled = false;
  Foo foo = context.Foo.Where(x => x.Id == myId).Single();
  ...
  if(!foo.Bars.IsLoaded)
  {
      foo.Bars.Load();
  }
  //do something with foo.Bars here
}
link|improve this answer
1  
I think with EF4.1 and Code-First he has POCOs, so IsLoaded and Load won't be available on the navigation properties. – Slauma Mar 20 '11 at 16:49
Thanks, disabling lazy loading could also be an option - will see what works best. – Morten Mertner Mar 20 '11 at 16:50
feedback

EF Code First does lazy loading only for properties marked as virtual (it can override those and place DynamicProxy instead of it). If you don't make your property virtual, you will turn off lazy loading for that property.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.