在实体框架中,如何在代码中创建关联属性?

时间:2013-05-06 18:37:18

标签: c# entity-framework

我想使用以下设置创建一个关联属性:

public class ClassType1{
    [Key]
    public int type1_ID { get;set; }
    public int type2_ID { get;set; }  // In database, this is a foreign key linked to ClassType2.type2_ID
    public ClassType2 type2Prop { get;set; }
}

public class ClassType2{
    [Key]
    public int type2_ID { get;set; }
}

我的问题是type2Prop无法找到它的foregin密钥。当它应该真正寻找“type2_ID”时,它试图寻找不存在的“type2Prop_ID”。这是我得到的错误:

{"Invalid column name 'type2Prop_ID'."}

如何告诉它使用哪个属性作为ClassType2的密钥?

2 个答案:

答案 0 :(得分:3)

ForeignKeyAttribute上试用type2Prop

using System.ComponentModel.DataAnnotations.Schema;

public class ClassType1
{
  [Key]
  public int type1_ID { get; set; }

  public int type2_ID { get; set; }  // In database, this is a foreign key linked to ClassType2.type2_ID

  [ForeignKey("type2_ID")]
  public virtual ClassType2 type2Prop { get; set; }
}

public class ClassType2
{
  [Key]
  public int type2_ID { get;set; }
}

您也可以使用Fluent API以防重构方式执行此操作(即,如果您将来更改属性的名称,编译器将告知您还必须更改映射)。对于像这样的简单案例来说,它有点丑陋,但它也更强大。在DbContext课程中,您可以添加以下内容:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
  modelBuilder.Entity<ClassType1>().HasRequired(x => x.type2Prop)
                                   .WithMany()
                                   .HasForeignKey(x => x.type2_ID);
}

答案 1 :(得分:0)

public class ClassType1{
    [Key]
    public int type1_ID { get;set; }
    [ForeignKey("type2Prop")]
    public int type2_ID { get;set; }  // In database, this is a foreign key linked to ClassType2.type2_ID
    public ClassType2 type2Prop { get;set; }
}

public class ClassType2{
    [Key]
    public int type2_ID { get;set; }
}