1

为什么在 PLINQO 中,以下内容有效;

parent.ManyToManyChildList.Add(child)
context.SubmitChanges();

但下面不是吗?

parent.ManyTomanyChildList.Remove(child)
context.SumbmitChanges();

使用 Remove(),尝试将多对多表的 PK 的父 FK 部分设置为空。是通过这个使用 PLINQO 删除关系的唯一方法吗?

context.ManyToManyEntity.DeleteOnSubmit(entity)
context.SubmitChanges();
4

1 回答 1

2

打开 .DBML(在 xml 编辑器中)并在外键的多对多表的父端设置外键关联。DeleteOnNull="true' 解决了这个问题。

<Table Name="dbo.ParentChild" Member="ParentChild">
    <Type Name="ParentChild">
      <Column Name="ParentId" Storage="_parentId" Type="System.Int32" DbType="int NOT NULL" IsPrimaryKey="true" CanBeNull="false" />
      <Column Name="ChildId" Storage="_childId" Type="System.Int32" DbType="int NOT NULL" IsPrimaryKey="true" CanBeNull="false" />
      <Association Name="Child_ParentChild" Member="Child" Storage="_child" ThisKey="ChildId" Type="Child" IsForeignKey="true" DeleteOnNull="false" />
      <Association Name="Parent_ParentChild" Member="Parent" Storage="_parent" ThisKey="ParentId" Type="Parent" IsForeignKey="true" DeleteOnNull="true" />
    </Type>
  </Table>

这在这里解释;http://blogs.msdn.com/b/bethmassi/archive/2007/10/02/linq-to-sql-and-one-to-many-relationships.aspx

于 2011-04-28T05:32:38.067 回答