EF 4.3没有定义键

时间:2012-02-10 05:46:37

标签: entity-framework

从EF 4.2更新到EF 4.3我现在收到消息 " EntityType' UserContact'没有定义键。定义此EntityType的键。"

负责的类看起来像:


    public class UserContact
    {
        [Key, Column(Order = 0)]
        public int UserID { get; set; }
        public User User { get; set; }

        [Key, Column(Order = 1)]
        public int ContactID { get; set; }
        public User Contact { get; set; }
    }

这适用于EF 4.2,但不适用于EF 4.3。我可以在EF 4.3中完成这项工作吗?

0 个答案:

没有答案