Yes, this is possible using the UpdateAsync method, but you need to make sure that you update the email fields and username.
var user = userManager.FindById(userId); user.Email = email; user.UserName = email; var updateResult = await userManager.UpdateAsync(user);
This method works for me successfully
Keith b
source share