I have a problem where a property of a newly added entity is not lazy-loaded, if required immediately after adding the entity.

For example:

I have a User entity with a virtual JobRole property:

public class User
{
    public int Id { get; set; }

    public virtual JobRole JobRole { get; set; }
    public int JobRoleId { get; set; }

    public string Name { get; set; }
}

I then add a new User:

public User Add(User user)
{
    var addedUser _myContext.Users.Add(user);
    myContext.SaveChanges();
    return addedUser;
}

The returned reference to the new User is then passed to a Razor view, where it tries to display the JobRole (eg JobRole.Name). At the point that the User is passed to the View, it has:

  • JobRoleId set correctly to an integer value.
  • JobRole = null

I would then expect JobRole to be lazy-loaded, when used by the View, but it isn't and results in a null-reference exception.

Is this expected behaviour, or is there a way to get newly added entities to lazy-load their properties?

Thanks in advance for any ideas.

Environment: Using Entity Framework 4.2 code-first. Lazy-loading enabled.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

That's because the DbSet.Add method returns the same object that has been passed to it as argument, which in your case isn't a proxy instance hence lazy loading is not available.

You should create the User object that's being passed to DbSet.Add using the DbSet.Create method, which will return a proxy instance, and then assign its properties before persisting it through the DbContext.

Here's an example:

public User Add(User user)
{
    var newUser = _myContext.Users.Create();

    // Copy the property values from 'user' to 'newUser' e.g.
    // newUser.Name = user.Name

    _myContext.Users.Add(newUser);
    myContext.SaveChanges();

    return newUser;
}
link|improve this answer
Perfect. Solved my problem - many thanks. To copy the user properties I just added a line before SaveChanges(): _myContext.Entry(newUser).CurrentValues.SetValues(user); Seems to work fine. – Steve Feb 13 at 14:43
@Steve That's even better. I'm glad I could help :) – Enrico Campidoglio Feb 13 at 14:55
feedback

You can try two things, the first one is enforce the eager-loading:

context.ContextOptions.LazyLoadingEnabled = false;

If this doesn't work, you can load the property using this: http://msdn.microsoft.com/en-us/library/dd382880.aspx

link|improve this answer
Thanks for taking the time to answer my question. However, turning off lazy loading doesn't make everything eager-load - you need "include" statements for that which only apply when retrieving items, not adding them. I can load the property manually but I am really trying to understand why this doesn't happen automatically. – Steve Feb 13 at 14:21
Anytime. You're welcome. =) – Vinicius Ottoni Feb 13 at 14:23
Well, probably because you are not enforcing the loading with the include method. If your context is lazy-loaded the relationship property of the class will be loaded because is an attribute of you entity, but the property that is in fact the relationship will not. – Vinicius Ottoni Feb 13 at 14:28
feedback

Your Answer

 
or
required, but never shown

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