将删除规则设置为"设置空值"在一对多的关系中首先使用代码

时间:2016-10-14 11:30:21

标签: entity-framework ef-code-first entity-framework-6 ef-fluent-api

我有两个具有一对多关系的实体

public class Brand{

    public virtual ICollection<Product> Product{ get; set; }
}

public class Product{

    public virtual Brand Brand{ get; set; }
}

>  modelBuilder.Entity<Brand>()
>                 .HasMany(x => x.Product)
>                 .WithOptional(e => e.Brand)
>                 .HasForeignKey(e => e.BrandSKU);

想要将删除规则设置为&#34;设置为空&#34;,我无法找到如何首先使用代码实现相同的目的。

0 个答案:

没有答案