Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 1 down vote accepted

If you may be using EF4 Code First, yeah? So, in the Initialization of your context, there is the override of 'OnModelCreated'.

In this method, I simply called up and set the property and all was resolved.

protected override void OnModelCreating(DbModelBuilder modelBuilder) {
     base.Configuration.LazyLoadingEnabled = false;
}

My model is now much more palatable. Lazy loading is great...but not when you don't want it. And when you start having circular references, it's just ridiculous.

share|improve this answer
This won't work because it will disable lazy loading only for the context instance that builds the model (usually the first used instance after application start). For all later context instances OnModelCreating isn't called and LazyLoadingEnabled will have the default value - which is true. – Slauma May 7 at 13:26

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();
}
share|improve this answer
Perfect, thanks. – Mikey Cee Jun 3 '10 at 16:02
8  
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

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;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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