使用 EF4 自我跟踪实体。
我有一个“用户”实体,其中包含用户可以属于的“组”集合。我想给这个用户添加/删除一些“组”,只给一个组 ID 列表。
public void UserAddGroups(int userID, List<int> groups)
{
var user = Context.Users.Include("Groups").FirstOrDefault(u => u.ID == userID);
if (user != null)
{
// Iterate through the groups that the user already belongs to.
foreach (var group in user.Groups.ToList())
{
// Remove any groups from the user if the new list does not have it.
if (!groups.Contains(group.ID)) user.Groups.Remove(group);
// Else remove it from the list of new groups to avoid duplication.
else groups.Remove(group.ID);
}
// Iterate through the group list and add it to the user's list
// (only a stubby is created)
foreach (var group in groups) user.Groups.Add(new Group { ID = group }.MarkAsUnchanged());
Context.Users.ApplyChanges(user);
Context.SaveChanges();
}
}
此方法中的结果在 处引发错误Context.SaveChanges()
。错误报告“组”实体不允许属性null
。Name
如果我要插入新组,这是可以预料的,但这显然不是我想要做的。我该如何解决这个问题?