我已经使用 POCO 构建了我的模型。当我去播种我的数据库时,我得到:
无法确定“CSP.Models.Type_Color”关系的主体端。多个添加的实体可能具有相同的主键
这是有问题的模型:
public class Type
{
[Key]
[ScaffoldColumn(false)]
public int TypeId { get; set; }
[Required(ErrorMessage = "A Type Name is Required")]
[Display(Name="Type")]
public string Name { get; set; }
public int ColorId { get; set; }
public bool Other { get; set; }
//Navigations
[ForeignKey("ColorId")]
public virtual Color Color { get; set; }
public virtual List<Tools> tools { get; set; }
}
public class Color
{
[Key]
[ScaffoldColumn(false)]
public int ColorId { get; set; }
[Required(ErrorMessage = "A name is required")]
public string Name { get; set; }
public string Description { get; set; }
//navigation
public virtual List<Type> Types { get; set; }
}
我在阅读建议后所做的大部分标记。
我收到错误的种子代码在这里:
var colors = new List<Color>
{
new Color{Name="Red"},
new Color{Name="White"}
};
var types = new List<Type>
{
new Type{ Name="Hammer", Color = colors.Where(ws => ws.Name=="Red").Single()},
new Type{ Name= "Electric", Color = colors.Where(ws => ws.Name=="Red").Single()}
};
new List<Tool>
{
new Wine{ Maker= Maker.Single(v => v.Name=="HammerCo"), Type= types.Single(wt => wt.Name=="hammer")},
}
}.ForEach(a => context.Tools.Add(a));
context.SaveChanges();
我还尝试将每个值添加到上下文中,然后保存。尝试保存类型实体后出现此错误:
[System.Data.SqlClient.SqlException] = {"INSERT 语句与 FOREIGN KEY 约束 \"Type_Color\" 冲突。冲突发生在数据库 \"TestTools\",表 \"dbo.Colors\",列 'ColorId '。\r\n语句已终止。"}
我错过了什么?