代码优先外键 - 多重性在角色中无效

时间:2014-08-11 10:07:30

标签: c# entity-framework ef-code-first ef-fluent-api

我的模型如下:

public class Form1
{
    [Key]
    public long Id { get; set; }

    [Required]
    [Display(Name = "Name")]
    public string Name { get; set; }

    [Required]
    [Display(Name = "Email")]
    public string Email { get; set; }

    [Display(Name = "Department", Prompt = "Please enter your department")]
    public string Department { get; set; }


    public  Form1 Form1{ get; set; }
    public  Form2 Form2 { get; set; }
}

第二类(需要一对一的关系)所以设置外键

public class Form2
{
    [Key]
    public long Form2_ID { get; set; }

    [ForeignKey("Form1")]
    public long Id { get; set; }


    //Mobile Home Page
    public string Location1 { get; set; }
    [DataType(DataType.MultilineText)] 

    //[ForeignKey("Id")]  //Even this is not working
    public  Form1 Form1 { get; set; }

}

这里的第三堂课。与上述相同,需要一对一关系外键。

public class Form3
{
    [Key]
    public long Form3_ID { get; set; }

    [ForeignKey("Form1")]
    public long Id { get; set; }

    [Display(Name = "Rhombus")]
    public bool Rhombus { get; set; }


    public  Form1 Form1 { get; set; }
}

我收到了以下错误。

在模型生成期间检测到一个或多个验证错误: \ tSystem.Data.Entity.Edm.EdmAssociationEnd ::多重性在角色' Form2_Form1_Source'中无效。在关系' Form2_Form1'。由于Dependent Role属性不是关键属性,因此Dependent Role的多重性的上限必须为' '。

我在这里做错了什么?

看起来我很震惊。!!也许数据库第一种方法更好。

1 个答案:

答案 0 :(得分:3)

对于一对一关系,EF希望表使用相同的主键。而且,如果这是真正的一对一,他们可能应该这样做。因此,在您的示例中,如果您将ID作为Form2和Form3表上的主键,那么您的一对一将起作用。

 public class Form1
 {
    [Key]
    public long Id { get; set; }

    [Required]
    [Display(Name = "Name")]
    public string Name { get; set; }

    [Required]
    [Display(Name = "Email")]
    public string Email { get; set; }

    [Display(Name = "Department", Prompt = "Please enter your department")]
    public string Department { get; set; }       

   public  Form1 Form1{ get; set; }
   public  Form2 Form2 { get; set; }

}

   public class Form2
{
    [Key]
    public long Id { get; set; }


    //Mobile Home Page
    public string Location1 { get; set; }
    [DataType(DataType.MultilineText)] 

    public  Form1 Form1Obj { get; set; }

}

public class Form3
{
    [Key]
    public long Id { get; set; }

    [Display(Name = "Rhombus")]
    public bool Rhombus { get; set; }


    public  Form2 Form2Obj { get; set; }
}