c# – 保存两个实体之间的关系和N-N关联
作者:互联网
我有一个带有poco对象的Entity Framework 4.0. edmx模型文件是从数据库生成的.
这个datacontext是通过WCF服务访问的,它只是意味着我收到了一些对象,我需要将它们附加到当前的datacontext(或者用密钥对应重新加载它们).
一切似乎工作正常,除了一个案例:
我在两个表之间有一个N-N关系,所以我有一个关联表,除了两个表的ID之外没有任何字段:
LINQ将此转换为以下架构,这似乎是正确的.
当我检索数据时没有问题,我自己插入Right_group的数据被正确地转换为“我的权利/群组集合中的新对象”.
但是,如果我尝试修改某些内容并保存,则无效
public void SaveRights(Group group, List<Rights> rights){
//here, group and rights are objects attached to the database
group.Rights.Clear();
group.Rights.AddRange(rights);
_dataContext.SaveChanges();
}
所以我的问题是:如何保存这两个对象的“关系”?
谢谢!
最佳答案:
如果你想避免首先从数据库加载对象,你可以这样做(从我的一个应用程序中获取代码,所以你必须调整它):
public void AddAndRemovePersons(int id, int[] toAdd, int[] toDelete)
{
var mailList = new MailList { ID = id, ContactInformations = new List<ContactInformation>() };
this.db.MailLists.Attach(mailList);
foreach (var item in toAdd)
{
var ci = new ContactInformation { ID = item };
this.db.ContactInformations.Attach(ci);
this.db.ObjectStateManager.ChangeRelationshipState(mailList, ci, ml => ml.ContactInformations, System.Data.EntityState.Added);
}
foreach (var item in toDelete)
{
var ci = new ContactInformation { ID = item };
this.db.ContactInformations.Attach(ci);
this.db.ObjectStateManager.ChangeRelationshipState(mailList, ci, ml => ml.ContactInformations, System.Data.EntityState.Deleted);
}
}
我发现删除关系和创建它一样难,所以我将代码留在那里.关于此解决方案的一点是,在运行此功能之前,maillist和contacts都存在.我附上它们让州经理跟踪它们.
如果要添加要保存的新对象,则可以使用
this.db.MailLists.AddObject(这是你的新项目)
我希望有所帮助!
标签:c,wcf,linq-to-entities,entity-relationship 来源: https://codeday.me/bug/20190515/1109641.html