假设我有一个博客,其中包含不使用外键(只是关联)的相关帖子的集合。这是一些psedo代码:
var b = store.get(id);
b.removePost(post); // internally simply removes the child from the collection.
context.SaveChanges();
我收到一个例外,说“给定多重约束对应......”如果需要,我可以挖掘确切的消息。
任何想法?我是否也被迫在保存更改之前使用db上下文删除它?
谢谢!