我首先使用EF代码,并使用EF 4.X DbContext Fluent Generator T4生成我的代码,所以现在我有2个poco实体(我将列表更改为BindingList<T>
以在winForms中使用绑定) :
public partial class Parent
{
public Parent()
{
this.Childs = new BindingList<Childs>();
}
int _ParentId;
public int ParentId { get; set; }
BindingList<Child> _Childs;
public virtual BindingList<Child> Childs { get; set; }
}
public partial class Child
{
int _ChildId;
public int ChildId { get; set; }
int _ParentId;
public int ParentId { get; set; }
Parent_Parent;
public virtual Parent Parent { get; set; }
}
我的映射文件也是:
public Parent_Mapping()
{
this.HasKey(t => t.ParentId);
this.ToTable("Parent");
this.Property(t => t.ParentId).HasColumnName("ParentId");
}
public Child_Mapping()
{
this.HasKey(t => t.ChildId);
this.ToTable("Child");
this.Property(t => t.ChildId).HasColumnName("ChildId");
this.Property(t => t.ParentId).HasColumnName("ParentId").IsRequired();
this.HasRequired(t => t.Parent)
.WithMany(t => t.Childs)
.HasForeignKey(t=>t.ParentId)
.WillCascadeOnDelete(true);
}
在我的DbContext中我有这些代码:
public partial class MyContext : DBContext
{
static MyContext()
{
Database.SetInitializer<MyContext>(null);
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<IncludeMetadataConvention>();
modelBuilder.Configurations.Add(new Parent_Mapping());
modelBuilder.Configurations.Add(new Child_Mapping());
}
public DbSet<Parent> Parents { get; set; }
public DbSet<Child> Childs { get; set; }
}
所以我有一对多关系,支持白名单级删除。
但是当我想删除父实体时,我收到了这个错误:
{
"Cannot insert the value NULL into column 'ParentId', table 'MyDB.dbo.Child';
column does not allow nulls. UPDATE fails.\r\nThe statement has been terminated."
}
当我使用EF Profiler进行监控时,我看到EF想要更新Child表以将ParentId设置为Null,而是删除父实体!:
update [dbo].[Child]
set
[ParentId] = null,
where ([ChildId] = 2 /* @1 */)
我的错误在哪里?
答案 0 :(得分:0)
恕我直言,原因是你和孩子一起装载了孩子。在这种情况下,您还必须删除孩子。如果只删除父EF,则只需将关系设置为null。 EF不会进行级联删除。级联删除仅在数据库中使用,并且仅在未加载子级时使用。如果您已加载子级,则在删除父实体之前执行更新,并发生此异常。
如果您希望行为类似于已加载实体的级联删除,则必须使用名为identifying relationship的内容(您的子实体将具有由其id和父ID组成的主键)。