该属性不能配置为导航属性

时间:2015-06-05 23:27:54

标签: c# entity-framework

我正在尝试实现这样的域模型: My model

这是一个实体框架mvc应用程序。模型的代码如下所示:

public class Login
{
    [Key]
    public int LoginID { get; set; }

    public virtual Therapist Therapist { get; set; }

    public virtual Patient Patient { get; set; }
}

public class Patient
{
    [Key]
    [ForeignKey("Login")]
    [Display(Name = "No.")]
    public int PatientId { get; set; }

    [ForeignKey("Therapist")]
    public int TherapistId { get; set; }

    [ForeignKey("Therapist")]
    public int TherapistId{ get; set; }

    public virtual Therapist Therapist { get; set; }

    public virtual Login Login { get; set; }
}

public class Therapist
{
    [Key]
    [ForeignKey("Login")]
    [Display(Name = "No.")]
    public int TherapistId { get; set; }

    [ForeignKey("Login")]
    public int LoginId { get; set; }

    public virtual Login Login { get; set; }

    public virtual ICollection<Patient> Patients { get; set; }
}

我完全按照教程和堆栈溢出问题进行操作,无论我做什么,当我尝试运行控制器时,我都会遇到同样的错误:

  

无法检索病人的元数据&#39;。该物业&#34; TherapistId&#34;   无法配置为导航属性。该物业必须是   有效的实体类型和属性应该有非抽象的getter和   二传手。对于集合属性,类型必须实现   ICollection其中T是有效的实体类型

我不知道TherapistId有什么问题 - 也许整个模型的想法都是垃圾?

1 个答案:

答案 0 :(得分:18)

我认为你在这种情况下的具体错误是

[ForeignKey("TherapistId")]
public int? TherapistId { get; set; }

而不是

[ForeignKey("Therapist")]
public int? TherapistId { get; set; }

无论如何,你似乎有一些问题,也许是这样的(我只保留了关系属性):

public class Login
{
    [Key]
    public int LoginID { get; set; }

    public virtual Therapist Therapist { get; set; }
    public virtual Patient Patient { get; set; }
}

public class Patient
{
    [Key]
    [ForeignKey("Login")]
    [Display(Name = "No.")]
    public int PatientId { get; set; }

    public virtual Login Login { get; set; }

    // was this supposed to be optional?
    [ForeignKey("Therapist")]
    public int? TherapistId{ get; set; }

    public virtual Therapist Therapist { get; set; }
  }

public class Therapist
{
    [Key]
    [ForeignKey("Login")]
    [Display(Name = "No.")]
    public int TherapistId { get; set; }
    public virtual Login Login { get; set; }

    public virtual ICollection<Patient> Patients { get; set; }
}

通常,对于EF中的一对一关系,关系的两侧必须具有相同的主键。

事实上,对于你正在做的事情,也许你可以尝试在LoginPatientTherapist之间使用某种继承,因为目前,{{{ 1}}可以同时拥有LoginPatient