async public Task SetNormalizedUserNameAsync(ApplicationUser user, string normalizedName, CancellationToken cancellationToken)
 {
     user.NormalizedUserName =
         await _dbContext.UpdatePropertyAsync <string>(user, ApplicationUserProperties.NormalizedUserName, normalizedName, cancellationToken);
 }