使用 Code First EF 构建我的项目。
我有一个User
类,它的属性之一是List<FriendGroup>
(其中 aFriendGroup
基本上只是User
s 的集合,有点像 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>
. 但是没有任何东西被注释FriendGroup
为ComplexType
.
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;
}