UserManager.AddToRole将null用户标识传递给FindByIdAsync

时间:2015-08-18 01:24:21

标签: c# asp.net-mvc asp.net-identity

我有一个MVC网站,它使用我自己的表格自定义身份。大多数工作都很好......添加用户,角色等。

现在我通过用户管理器将用户添加到角色中:

var result = um.AddToRole(userID, roleName);

“um”是我的UserStore界面。在调用AddToRole方法之前,它调用FindByIdAsync方法,为userID传入一个空值。不好。这打破了整个过程。

Microsoft Identity决定如何在幕后调用这些例程,我无法弄清楚为什么会传递null。我猜我在部分UserStore实现中有问题,但我找不到它。

当我尝试AddToRole时调用FindByIdAsync方法????

1 个答案:

答案 0 :(得分:1)

AddToRole方法是一种定义为的扩展方法:

/// <summary>
/// Add a user to a role
/// 
/// </summary>
/// <param name="manager"/><param name="userId"/><param name="role"/>
/// <returns/>
public static IdentityResult AddToRole<TUser, TKey>(this UserManager<TUser, TKey> manager, TKey userId, string role) where TUser : class, IUser<TKey> where TKey : IEquatable<TKey>
{
  if (manager == null)
    throw new ArgumentNullException("manager");
  return AsyncHelper.RunSync<IdentityResult>((Func<Task<IdentityResult>>) (() => manager.AddToRoleAsync(userId, role)));
}
UserManagerExtensions中的

。正如您所看到的,它只是调用AddToRoleAsync而后者被定义为:

 /// <summary>
    /// Add a user to a role
    /// 
    /// </summary>
    /// <param name="userId"/><param name="role"/>
    /// <returns/>
    public virtual async Task<IdentityResult> AddToRoleAsync(TKey userId, string role)
    {
      this.ThrowIfDisposed();
      IUserRoleStore<TUser, TKey> userRoleStore = this.GetUserRoleStore();
      TUser user = await TaskExtensions.WithCurrentCulture<TUser>(this.FindByIdAsync(userId));
      if ((object) user == null)
        throw new InvalidOperationException(string.Format((IFormatProvider) CultureInfo.CurrentCulture, Resources.UserIdNotFound, new object[1]
        {
          (object) userId
        }));
      IList<string> userRoles = await TaskExtensions.WithCurrentCulture<IList<string>>(userRoleStore.GetRolesAsync(user));
      IdentityResult identityResult;
      if (userRoles.Contains(role))
      {
        identityResult = new IdentityResult(new string[1]
        {
          Resources.UserAlreadyInRole
        });
      }
      else
      {
        await TaskExtensions.WithCurrentCulture(userRoleStore.AddToRoleAsync(user, role));
        identityResult = await TaskExtensions.WithCurrentCulture<IdentityResult>(this.UpdateAsync(user));
      }
      return identityResult;
    }
UserManager中的

。所以如果这个电话:

TUser user = await TaskExtensions.WithCurrentCulture<TUser>(this.FindByIdAsync(userId));

为userID传递null然后通过查看它只能是调用链,因为你为userID传递了一个null值。

所以回答你的问题:

  

当我尝试AddToRole ????

时调用FindByIdAsync方法

A: UserManager.AddToRoleAsync