2

使用 Code First EF 构建我的项目。

我有一个User类,它的属性之一是List<FriendGroup>(其中 aFriendGroup基本上只是Users 的集合,有点像 Google+ 中的“圈子”)。 FriendGroup在不同的文件中定义为 POCO 并且......事情就是这样......我从来没有在任何地方说过它是一个ComplexType.

但是当我尝试运行我的应用程序时,我得到了异常,

System.InvalidOperationException: The type 'FriendGroup' has already been configured as an entity type. It cannot be reconfigured as a complex type.

我将不胜感激任何人能够提供的任何见解,说明为什么 ASP.NET 决定我的课程是ComplexType. 提前致谢!

ETA:我的模型中的相关位:

namespace Clade.Models
{
    public class User
    {
        [Key]
        public int userID { get; private set; }
        [Required]
        public Profile profile { get; set; }
        [Required]
        public string userName { get; set; }
        ...
        public List<FriendGroup> friendGroups { get; set; }
        ...
        public List<AchievementEarned> achievementsEarned { get; set; }
    }
}

namespace Clade.Models
{
    public class FriendGroup
    {
        [Key]
        [HiddenInput(DisplayValue = false)]
        public int friendGroupID { get; private set; }
        [HiddenInput(DisplayValue = false)]
        public int userID { get; set; }
        [Required]
        public string friendGroupName { get; set; }
        public Privacy defaultPrivacy { get; set; }
        [Timestamp]
        public DateTime dateCreated { get; set; }
        public List<User> usersInFG { get; set; }

        public void UpdateMe(FriendGroup editedFG)
        {
            friendGroupName = editedFG.friendGroupName;
            defaultPrivacy = editedFG.defaultPrivacy;
            usersInFG = editedFG.usersInFG;
        }
    }
}

还有 EF 代码、存储库等,但他们都不知道任何 POCO 的内部运作。我在这里看到的唯一可能有问题的是User具有 aList<FriendGroup>FriendGroup具有List<User>. 但是没有任何东西被注释FriendGroupComplexType.

ETA (2): Profile也只是一个 POCO:

namespace Clade.Models
{
    public class Profile
    {
        [Key]
        public int profileID { get; private set; }
        public User user { get; set; }
        public DiscussionGroup dg { get; set; }
        public string location { get; set; }
        public Privacy locationPrivacy { get; set; }
        public string aboutMe { get; set; }
        public Privacy aboutMePrivacy { get; set; }
        ...
    }
}

User确实有List几个带ComplexType注释的对象,但 EF 并没有抱怨这些。

namespace Clade.Models
{
    [ComplexType]
    public class AchievementEarned
    {
        public Achievement achievement { get; set; }
        [Timestamp]
        public DateTime dateEarned { get; set; }
    }
}

ETA (3):这是UserRepository发生错误的方法。它发生在以 开头的行上var results

    public bool Add(User newUser)
    {
        bool rv = false;

        //check to make sure no one else has the same username first
        var results = from user in Users
                      where user.userName.Equals(newUser.userName)
                      select user;
        if (results.Count() == 0)
        {
            this.context.Users.Add(newUser);
            this.Commit();
            rv = true;
        }

        return rv;
    }
4

1 回答 1

0

您可以尝试以下操作:使用 int 属性而不是 Enum 或尝试使用 PM> Install-Package EntityFramework -Pre 更新到 EF 5 beta 2,这样可以更好地支持枚举

于 2012-04-29T23:15:28.453 回答