实体框架在加载实体时删除级联

时间:2015-07-12 19:40:14

标签: c# mysql entity-framework

即时通过MySQL使用Entity Framework 6 Code Firsts。

我有以下实体和流畅的配置:

    public class Cotizacion
{
    public int CotizacionId             { get; set; }
    public int Numero                   { get; set; }
    public DateTime Fecha               { get; set; }
    public int? ClienteId               { get; set; }
    public Cliente Cliente              { get; set; }
    public List<ItemsCotizacion> Items  { get; set; }

}

public class Cliente
{
    public int ClienteId                    { get; set; }
    public string RazonSocial               { get; set; }
    public string Cuit                      { get; set; }
    public string Direccion                 { get; set; }
    public string Telefono                  { get; set; }
    public List<Cotizacion> Cotizaciones    { get; set; }
}

public class ConfigCliente : EntityTypeConfiguration<Cliente>
{
    public ConfigCliente()
    {
        Property(c => c.RazonSocial).IsRequired().HasMaxLength(100);
        Property(c => c.Direccion).IsOptional().HasMaxLength(100);
        Property(c => c.Cuit).IsOptional().HasMaxLength(15);
        Property(c => c.Telefono).IsOptional().HasMaxLength(100);
        HasKey(c => c.ClienteId);
        HasMany(c => c.Cotizaciones).WithRequired(cot => cot.Cliente).WillCascadeOnDelete(true);
    }

}
public class ConfigCotizacion : EntityTypeConfiguration<Cotizacion>
{
    public ConfigCotizacion()
    {
        Property(c => c.Fecha).IsRequired();
        HasRequired(c => c.Items);
        HasMany(c => c.Items).WithRequired(i => i.Cotizacion).WillCascadeOnDelete(true);
        HasRequired(c => c.Cliente).WithMany(cot => cot.Cotizaciones);
    }   
}

我希望当我删除一个实体“Cliente”EF删除所有相关实体“Cotizacion”。级联删除仅在我在上下文中加载List Cotizaciones时失败,但是当我不在上下文中加载Cotizaciones列表时,级联删除工作正常。

我收到以下错误:

  

{“无法添加或更新子行:外键约束失败   (\“pruebaentity \”。\“cotizacion \”,CONSTRAINT   \“FK_Cotizacion_Cliente_ClienteId \”FOREIGN KEY(\“ClienteId \”)   REFERENCES \“cliente \”(\“ClienteId \”)ON DELETE CASCADE ON UPDATE   CASCADE)“}

1 个答案:

答案 0 :(得分:0)

解决: 问题是我用过

context.Entry(entity).Sate = System.Data.Entity.EntityState.Deleted

而不是

context.Clients.Remove(entity)