我已经阅读了一些与此特定错误消息有关的问题/答案,但我不太了解适当的解决方案。
我读过很多次,您应该创建 EF4 上下文,使用它,然后处理它。在我的整个应用程序中,我使用不同的上下文对象在这里和那里加载实体,然后最终希望将实体关联在一起。
我创建了一个简单的控制台应用程序,很容易导致错误。非常简单的模型用图表表示,然后是代码。
如何让两个不同的实体共享相同的上下文?我真的必须创建一个新的上下文,再次加载这两个实体(即使我已经拥有它们),只是为了关联它们并保存?
如果我只是错过了一个已经存在的、适当的问题/答案,请指出我正确的地方。
internal class Program {
private static void Main(string[] args) {
DeleteAllEntities();
CreateInitialEntities();
Owner o = LoadOwner();
Child c = LoadChild();
AssociateAndSave(o, c);
}
private static void AssociateAndSave(Owner o, Child c) {
using (var context = new ModelEntities()) {
// Exception occurs on the following line.
o.Children.Add(c);
context.Attach(o);
context.SaveChanges();
}
}
private static Owner LoadOwner() {
using (var context = new ModelEntities()) {
return ((from o in context.Owners
select o).First());
}
}
private static Child LoadChild() {
using (var context = new ModelEntities()) {
return ((from c in context.Children
select c).First());
}
}
private static void CreateInitialEntities() {
using (var context = new ModelEntities()) {
Owner owner = new Owner();
Child child = new Child();
context.Owners.AddObject(owner);
context.Children.AddObject(child);
context.SaveChanges();
}
}
private static void DeleteAllEntities() {
using (var context = new ModelEntities()) {
List<Child> children = (from c in context.Children
select c).ToList();
foreach (var c in children)
context.Children.DeleteObject(c);
List<Owner> owners = (from o in context.Owners
select o).ToList();
foreach (var o in owners)
context.Owners.DeleteObject(o);
context.SaveChanges();
}
}
}