UserManager.AddToRole 将空用户 ID 传递给 FindByIdAsync



我有一个MVC网站,它使用自定义标识和我自己的表。 大多数一切都工作正常...添加用户、角色等。

现在,我通过用户管理器将用户添加到角色,如下所示:

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

"嗯"是我的用户商店界面。 在调用 AddToRole 方法之前,它会调用 FindByIdAsync 方法,该方法传入用户 ID 的空值。 不好。 这打破了整个过程。

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

当我尝试添加角色时,什么调用 FindByIdAsync 方法????

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));

正在为用户 ID 传递 null,然后通过查看调用链,它只能是因为您正在为 userID 传递一个 null 值。

所以回答你的问题:

当我尝试添加角色时,什么调用FindByIdAsync方法????

A: UserManager.AddToRoleAsync

相关内容

  • 没有找到相关文章

最新更新