I have 2 POCO classes (below) and wish to remove the link between two of their records. According to this EF 5.0 should be able to handle the removal without loading the User class like so:
context.Computers.Find("test").User = null;
context.SaveChanges();
This doesn't work, but using the .net 4 approved method it works:
en = context.Computers.Find("test");
context.Entry(en).Reference(e => e.User).Load();
en.User = null;
context.SaveChanges();
My EF reference is EntityFramework.dll version 5.0.0.0. Am I missing something obvious here?
Here are the classes:
public class Computer
{
public string Id { get; set; }
public Nullable<int> UserId { get; set; }
public virtual User User { get; set; }
}
public class User
{
public int Id { get; set; }
public virtual ICollection<Computer> Computers { get; set; }
}
Edit: Here is the specific lines in the above linked article that don't seem to agree with the functionality I'm seeing:
To delete the relationship, set the navigation property to null. If you are working with the Entity Framework that is based on .NET 4.0, then the related end needs to be loaded before you set it to null. For example:
context.Entry(course).Reference(c => c.Department).Load();
course.Department = null;
Starting with the Entity Framework 5.0, that is based on .NET 4.5, you can set the relationship to null without loading the related end.
context.Computersinstead ofcontext.Usersand...Find("test").UserId = null;instead of...Find("test").User = null;? – Slauma Jan 24 at 20:10User- in contrast to your expectation. If you don't want that, set theUserIdtonull. – Slauma Jan 24 at 20:27Userand updatingUserIdinstead does work but being able to remove relationships through navigation properties would be much easier, especially for composite key relationships. – Jake Jan 24 at 20:49Userwhen you inspect the property in code or in the debugger. This triggers lazy loading. But your first line above only calls the property setter, so no lazy loading occurs. Anyway, I would suggest to use eager loadingcontext.Computers.Include("User").SingleOrDefault(c => c.Id == "test").User = null;which should work and will save you one database roundtrip. – Slauma Jan 24 at 21:22