EF 6.x:Can';t具有多对多关系的种子表
本文关键字:关系 种子 Can EF | 更新日期: 2023-09-27 18:01:09
我目前正在试验EF,我有以下问题无法解决。
我有具有多对多关系的用户和角色实体。当我试图用初始数据为数据库种子时,问题就出现了。两个用户和两个角色(在下面的代码中(成功播种。我可以在"角色"answers"用户"表中看到条目。但连接表只有一个包含user1 id
和role1 id
的条目。当我试图从数据库中获取具有两个角色的用户时,它只有一个角色——role1
。我不知道为什么。我的错误在哪里?我该如何正确地做到这一点?这是我的代码:
实体
public abstract class Entity
{
public int Id { get; set; }
}
用户
public class AppUser : Entity
{
...
public virtual ICollection<AppRole> Roles { get; set; }
public AppUser()
{
Roles = new SortedSet<AppRole>(new RoleComparer());
}
}
角色
public class AppRole : Entity
{
public RoleEnum Role { get; set; }
public ICollection<AppUser> Users { get; set; }
public AppRole()
{
Users = new SortedSet<AppUser>(new UserComparer());
}
}
FluentAPI
public class UserMap : EntityTypeConfiguration<AppUser>
{
public UserMap()
{
ToTable("Users");
...
#region Many-to-Many
HasMany(usr => usr.Roles)
.WithMany(r => r.Users)
.Map(map =>
{
map.ToTable("UsersAndRoles");
map.MapLeftKey("AppUserId");
map.MapRightKey("AppRoleId");
});
#endregion
}
}
种子代码
public class DropCreateTestDbAlways : DropCreateDatabaseAlways<UnitTestContext>
{
protected override void Seed(UnitTestContext context)
{
var role1 = new AppRole();
var role2 = new AppRole() { Role = RoleEnum.Administrator };
context.Roles.Add(role1);
context.Roles.Add(role2);
var user1 = new AppUser()
{
UserName = "RegularUser",
Email = "regular@email.com",
PasswordHash = "FGJSDBXNLSNLSDDSJSCLNCS",
UserProfile = new AppUserProfile()
};
var user2 = new AppUser()
{
UserName = "AdminUser",
Email = "admins@email.com",
PasswordHash = "FGJSDBXNLSNLSDDSJSCLNCS",
UserProfile = new AppUserProfile()
};
user1.Roles.Add(role1);
user2.Roles.Add(role1);
user2.Roles.Add(role2);
context.Users.Add(user1);
context.Users.Add(user2);
base.Seed(context);
}
}
好的,我想我发现了我的问题。看来我的比较器是哪里的原因。我用泛型List替换了SortedSet<>
,一切都按预期开始工作。
这是我的一个比较器的代码:
public class RoleComparer : IComparer<AppRole>
{
public int Compare(AppRole x, AppRole y)
{
return x.Id.CompareTo(y.Id);
}
}
我仍然不太明白为什么它会引起我的问题,所以如果有人知道,请告诉我。