为什么在 PLINQO 中,以下内容有效;
parent.ManyToManyChildList.Add(child)
context.SubmitChanges();
但下面不是吗?
parent.ManyTomanyChildList.Remove(child)
context.SumbmitChanges();
使用 Remove(),尝试将多对多表的 PK 的父 FK 部分设置为空。是通过这个使用 PLINQO 删除关系的唯一方法吗?
context.ManyToManyEntity.DeleteOnSubmit(entity)
context.SubmitChanges();