DELETE 语句与 SAME TABLE REFERENCE 约束“FK_AuthCategories_Parent”冲突。冲突发生在数据库“MyDB”、表“dbo.AuthCategories”、列“ParentID”中。
如果我尝试删除表中具有自引用 FK 的 ParentID 的所有内容,我会收到上面的错误,即我需要首先删除子项(即,它尝试删除具有破坏 FK 的子项的父项)。
var dc = from c in db.AuthCategories
select c;
db.AuthCategories.DeleteAllOnSubmit(dc);
db.SubmitChanges();
是否有一个简单的 LINQ to SQL 查询可以在处理级联删除时删除表中的所有内容?
- 不想使用 SQL 服务器端解决方案,例如触发器或 ON DELETE CASCADE
- 需要使用 LINQ to SQL,而不是 EF
- 希望它尽可能简单,如果可能的话,单线
这是表结构:
[Table(Name = "AuthCategories")]
public class AuthCategory
{
[Column(IsPrimaryKey = true, IsDbGenerated = true)]
public int ID { get; set; }
[Column]
public string Name { get; set; }
[Column]
private int? ParentID { get; set; }
private EntityRef<AuthCategory> parent;
[Association(IsForeignKey = true, ThisKey = "ParentID")]
public AuthCategory Parent
{
get { return parent.Entity; }
set { parent.Entity = value; }
}
}