我们要求在另一个表中使用外键作为Composite键的一部分。 e.g。
Public Primary_Class{
public int pkey{get; set;}
public string Misc{get; set;}
}
Public dependent_Class{
*public int dkey {get; set;} /*Column 1 of Primary key*/
public int pkey{get; set;} /*Cloumn 2 of PK as well as FK to Primay_Class*/
pubic string data{get; set;}
}
请帮助我在Entity Framework 6.0中实现这一目标
答案 0 :(得分:0)
似乎你曾经尝试过,但我仍在回答。
在实体框架中,您可以使用Entity Framework Code First Data Annotations来实现此目的。
以下是完整的解决方案:
public class Primary_Class
{
[Key]
public int pkey { get; set; }
public string Misc { get; set; }
}
public class dependent_Class
{
[Key]
public int dkey { get; set; } //*column 1 of Primary key*/
[ForeignKey("Primary_Class")]
[Column(Order = 1)]
public int pkey { get; set; } //*Cloumn 2 of PK as well as FK to Primay_Class*
public string data{get; set;}
}