为什么外键被添加到我的表中

时间:2011-10-08 11:12:41

标签: ef-code-first

我有一个模特:

public class QuestionRevision
{
        [Key]
        public int Id { get; set; }

        public int IdEditor { get; set; }

        public List<Tag> Tags { get; set; }
}

public class Tag
{
        [Key]
        public int Id { get; set; }
        [Required]
        public string Name { get; set; }
}

问题是,我在Tags表中添加了一个名为QuestionRevision_Id的列。

当然,一个标签可以分配给很多问题,所以这不是我需要的。

我需要添加什么注释才能获得所需的结果?

1 个答案:

答案 0 :(得分:0)

我在Tag课程中添加了:

public virtual List<QuestionRevision> QuestionRevisions { get; set; }

并在QuestionRevision:

public virtual List<Tag> Tags { get; set; }

现在我有表格TagQuestionRevisions,所以现在它的工作方式我想要。