重复“列”属性

发布于 2024-10-26 22:50:30 字数 527 浏览 0 评论 0原文

我正在使用 Entity Framework 4.1 创建一个实体,并使用列为列提供不同的名称。我有一个复合键和外键,但我收到错误

 public class Account
    {
 [Key]
        [ForeignKey("Account"), Column(Order = 0)]
        [Column("Creditor ID", Order = 0)]    //PK FK
        public int CreditorId { get; set; }


        [Key]
        [ForeignKey("Account"), Column(Order = 1)]
        [Column("[Account No]", Order = 1)]            //PK FK
        public int AccountNo { get; set; }
}

两者都是主键和外键

我收到以下错误:

重复的“列”属性

I am creating an entity using Entity Framework 4.1 and I am using column to give different names to columns. I have a composite key as well as foreign key but I am getting error

 public class Account
    {
 [Key]
        [ForeignKey("Account"), Column(Order = 0)]
        [Column("Creditor ID", Order = 0)]    //PK FK
        public int CreditorId { get; set; }


        [Key]
        [ForeignKey("Account"), Column(Order = 1)]
        [Column("[Account No]", Order = 1)]            //PK FK
        public int AccountNo { get; set; }
}

Both are primary key as well as foreign keys

I get following error:

Duplicate 'Column' attribute

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

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

发布评论

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

评论(1

只想待在家 2024-11-02 22:50:31

好吧,你确实这么做了!每个属性都定义了两个 ColumnArtribute 实例。它们位于不同的行并且位于不同的方括号中这一事实是无关紧要的。

在这两种情况下,第一行的内容看起来都是多余的。

Well, you do! each property has two ColumnArtribute instances defined. The fact that they are on different lines and in different sets of square brackets is irrelevant.

It looks like in both cases the one on the first line is redundant.

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