我想在同一事务中创建具有角色的用户,但我在实现时遇到问题。 为了在事务中使用userStore并且它不会自动保存更改并忽略我的事务,我不得不关闭自动保存更改。 这使得它将等到我调用保存更改。 这工作正常,但因为当我调用管理器时,用户存储现在不返回用户 ID。创建由于关闭,我没有 ID 传递到 userManager.AddToRole。 有没有办法将我尝试创建的用户添加到同一事务中的角色?
如果您手动启动事务,然后提交它,则在事务中写入数据库的所有内容都将保存在事务中。如果需要,您可以回滚它。
做这样的事情:
var dbContext = // get instance of your ApplicationDbContext
var userManager = // get instance of your ApplicationUserManager
using (var transaction = dbContext.Database.BeginTransaction(IsolationLevel.ReadCommitted))
{
try
{
var user = // crate your ApplicationUser
var userCreateResult = await userManger.CreateAsync(user, password);
if(!userCreateResult.Succeeded)
{
// list of errors in userCreateResult.Errors
transaction.Rollback();
return userCreateResult.Errors;
}
// new Guid for user now saved to user.Id property
var userId = user.Id;
var addToRoleresult = await userManager.AddToRoleAsync(user.Id, "My Role Name");
if(!addToRoleresult.Succeeded)
{
// deal with errors
transaction.Rollback();
return addToRoleresult.Errors;
}
// if we got here, everything worked fine, commit transaction
transaction.Commit();
}
catch (Exception exception)
{
transaction.Rollback();
// log your exception
throw;
}
}
希望这有帮助。