如何在我的模型设计中指定 ON DELETE NO ACTION 外键约束?
目前,我有:
public class Status
{
[Required]
public int StatusId { get; set; }
[Required]
[DisplayName("Status")]
public string Name { get; set; }
}
public class Restuarant
{
public int RestaurantId { get; set; }
[Required]
public string Name { get; set; }
[Required]
[EmailAddress]
public string Email { get; set; }
[Required]
public string Telephone { get; set; }
[Required]
public int StatusId { get; set; }
public List<Menu> Menus { get; set; }
// NAVIGATION PROPERTIES
public virtual Status Status { get; set; }
}
public class Menu
{
public int MenuId { get; set; }
[Required]
public int RestaurantId { get; set; }
[Required]
public string Name { get; set; }
[Required]
public int StatusId { get; set; }
// NAVIGATION PROPERTIES
public virtual Status Status { get; set; }
public virtual Restaurant Restaurant { get; set; }
}
还有我的 DbContext:
public class MenuEntities : DbContext
{
public DbSet<Status> Statuses { get; set; }
public DbSet<Restaurant> Restaurants { get; set; }
public DbSet<Menu> Menus { get; set; }
}
如你看到的:
- 一家餐厅有很多菜单
- 餐厅有一个状态
- 菜单属于 1 家餐厅
- 餐厅和菜单都有 1 个状态。(现场、隐形、草稿)
自然,如果状态被删除,我当然不想级联,因为这会搞砸一切。
更新:
Mark Oreta 在下面的示例中提到使用以下内容:
modelBuilder.Entity<FirstEntity>()
.HasMany(f => f.SecondEntities)
.WithOptional()
.WillCascadeOnDelete(false);
我把这段代码放在哪里?在我的 MenuEntities / DbContext 类中?任何人都可以提供一个使用这个的例子吗?
更新: 现在开始工作了,但是这在尝试为数据库播种时产生了多重性约束错误......
Multiplicity constraint violated. The role 'Menu_Status_Source' of the relationship 'LaCascadaWebApi.Models.Menu_Status' has multiplicity 1 or 0..1.
我的数据库初始化程序: