作为我之前的问题的后续,我现在知道 EF 不会自动为我保存整个实体的所有更改。如果我的实体有一个 List<Foo>,我需要更新该列表并保存它。但是怎么做?我已经尝试了一些事情,但我无法正确保存列表。
我在 Application 和 CustomVariableGroup 之间有一个多对多的关联。一个应用程序可以有一个或多个组,一个组可以属于一个或多个应用程序。我相信我的 Code First 实现正确设置了这个,因为我在数据库中看到了多对多关联表。
底线是 Application 类有一个 List<CustomVariableGroup>。我的简单案例是应用程序已经存在,现在用户选择了一个属于该应用程序的组。我想将该更改保存在数据库中。
尝试#1
this.Database.Entry(application).State = System.Data.EntityState.Modified;
this.Database.SaveChanges();
结果:关联表仍然没有行。
尝试#2
this.Database.Applications.Attach(application);
var entry = this.Database.Entry(application);
entry.CurrentValues.SetValues(application);
this.Database.SaveChanges();
结果:关联表仍然没有行。
尝试#3
CustomVariableGroup group = application.CustomVariableGroups[0];
application.CustomVariableGroups.Clear();
application.CustomVariableGroups.Add(group);
this.Database.SaveChanges();
结果:关联表仍然没有行。
我研究了很多,我尝试的东西比我展示的要多,我根本不知道如何使用新的 CustomVariableGroup 更新应用程序的列表。应该怎么做?
编辑(解决方案)
经过数小时的反复试验,这似乎奏效了。看来我需要从数据库中获取对象,修改它们,然后保存它们。
public void Save(Application application)
{
Application appFromDb = this.Database.Applications.Single(
x => x.Id == application.Id);
CustomVariableGroup groupFromDb = this.Database.CustomVariableGroups.Single(
x => x.Id == 1);
appFromDb.CustomVariableGroups.Add(groupFromDb);
this.Database.SaveChanges();
}