It seems that lazy loading is enabled by default in EF4. At least, in my project, I can see that the value of

dataContext.ContextOptions.LazyLoadingEnabled

is true by default. I don't want lazy loading and I don't want to have to write:

dataContext.ContextOptions.LazyLoadingEnabled = false;

each time I get a new context. So is there a way to turn it off by default, say, across the whole project?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

The edmx file has in the ConceptualModel and EntityContainer definition an attribute for lazy loading where you can set lazy loading generally to false:

<EntityContainer Name="MyEntitiesContext" annotation:LazyLoadingEnabled="false">

This creates the following setting in the ObjectContext constructor:

public MyEntitiesContext() : base("name=MyEntitiesContext", "MyEntitiesContext")
{
    this.ContextOptions.LazyLoadingEnabled = false;
    OnContextCreated();
}
link|improve this answer
Perfect, thanks. – Mikey Cee Jun 3 '10 at 16:02
6  
This requires you to modify the generated code, which will get overwritten if you modify your model. Consider putting an ObjectContextFactory in place, and make the change in the factory. That way you're still only setting the option once and you're not changing auto generated code. – ctorx Mar 7 '11 at 5:28
feedback

I wrote a quick sample showing how the new Lazy Loading features work with EF Code First. Achieving what you want in the Code First model is simply a matter of adding one line to your DbContext's constructor, like so:

public BlogContext() : base()
{
    this.Configuration.LazyLoadingEnabled = false;
}
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.