使用数据注释创建外键

时间:2014-06-02 18:22:55

标签: c# ef-code-first foreign-keys data-annotations entity-framework-6

在下面的代码中,我需要在ParentInfoAddProperties.ParentQuestionAnswersId上设置一个外键constrant,以便它依赖于ParentQuestionAnswers.Id(这是一个主键)。我试图使用数据注释,但实体框架6想要在我的ParentQuestionAnswers表中创建一个新的外键列,该列引用ParentInfoAddProperties.Id列而不是ParentInfoAddProperties.ParentQuestionAnswersId列。我不希望Entity Framework创建新的外键列。

如果有人能够解释我应该指定哪些数据注释或(如果需要)流畅的映射来实现所需的外键实例,我将非常感激。提前谢谢。

namespace Project.Domain.Entities
{  
    public class ParentQuestionAnswers
    {
        public ParentQuestionAnswers()
        {
            ParentInfoAddProperties = new ParentInfoAddProperties();
        }

        [Required]
        public int Id { get; set; }

        [Required]
        public int UserId { get; set; }

        public ParentInfoAddProperties ParentInfoAddProperties { get; set; }
    }

    public class ParentInfoAddProperties
    {
        [Required]
        public int Id { get; set; }

        [Required]
        public int ParentQuestionAnswersId { get; set; }
    }
}

2 个答案:

答案 0 :(得分:6)

您可以使用以下数据注释,并使用entity而不是int

[Required]
[ForeignKey("ParentQuestionAnswers")]
public ParentQuestionAnswers ParentQuestionAnswers { get; set; }

只能获取ID,您可以添加属性

public int ParentQuestionAnswersId { get; set; }

但您仍需要ParentQuestionAnswers属性,以便EF了解您。

(这些代码行应位于ParentInfoAddProperties类)

之下

答案 1 :(得分:0)