我有2个实体用户和角色,映射如下:
accountSet.HasMany(x => x.Roles).WithMany(x => x.Users).Map(t =>
{
t.ToTable("UserRole");
t.MapLeftKey("UserId");
t.MapRightKey("RoleId");
});
我试图更新用户(通过添加新的UserRole)
var rolesForUser = UnitOfWork.UserRoleService.FindEntitiesByFilter(...);
user.Roles.Clear();
foreach (var role in rolesForUser)
user.Roles.Add(role)
在服务中:
AttachCollections(entity);
_entityRepository.Update(entity);
AttachCollections:
private void AttachCollections(EntityBase entity)
{
var result = new List<IEnumerable<EntityBase>>();
foreach (var prop in entity.GetType().GetProperties())
{
if (typeof(IEnumerable<EntityBase>).IsAssignableFrom(prop.PropertyType))
{
var get = prop.GetGetMethod();
if (!get.IsStatic && get.GetParameters().Length == 0 && get.IsVirtual)
{
var enumerable = (IEnumerable<EntityBase>)get.Invoke(entity, null);
if (enumerable != null) result.Add(enumerable);
}
}
}
foreach (var collection in result)
{
foreach (var r in collection)
{
var collectionType = r.GetType();/
_dbContext.Set(collectionType).Attach(r);
}
}
}
...UnitOfWork.Commit()
我收到错误&#34; AcceptChanges无法继续,因为对象的键值与ObjectStateManager中的另一个对象冲突。在调用AcceptChanges之前,请确保键值是唯一的。
如果我删除了ApplyCollection,我收到的错误是无法插入带有id的重复用户。 似乎UserRole被标记为已添加状态。如果更改此状态,则用户(包含用户角色)也标记为已添加。