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

发布于 2024-12-09 02:11:28 字数 493 浏览 0 评论 0原文

我有一个模型:

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 的列。

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

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

I have a model:

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; }
}

The problem is, I have additional column in Tags table, called QuestionRevision_Id.

Of course one tag could be assigned to many questions, so it's not what I need.

What annotation I need to add to get the desired result?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独木成林 2024-12-16 02:11:28

我已在 Tag class:

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

和 QuestionRevision: 处

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

添加,现在我有表 TagQuestionRevisions,所以现在它可以按我想要的方式工作。

I've added at Tag class:

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

and at QuestionRevision:

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

and now I have table TagQuestionRevisions, so now it's work how I want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文