We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ChangeEmailAsync is not updating the username though I have set the uniqueEmailAddress in the builder.
ChangeEmailAsync
var builder = services.AddIdentity<ApplicationUser, ApplicationRole>(opt => { opt.User.RequireUniqueEmail = true; }
one of the issues have "IsUsernameEmailAddress" dynamic property added recently. I'm using 2.1 .net core. but could not see this.
Wondering do I need to use the above in this case? or Is it a bug?
Ex: Generate token GenerateChangeEmailTokenAsync then ChangeEmailAsync to see the behaviour.
GenerateChangeEmailTokenAsync
The text was updated successfully, but these errors were encountered:
Hi,
Could be a completely different issue however I wonder if what worked for me might also help you, see #32
Sorry, something went wrong.
No branches or pull requests
ChangeEmailAsync
is not updating the username though I have set the uniqueEmailAddress in the builder.var builder = services.AddIdentity<ApplicationUser, ApplicationRole>(opt => { opt.User.RequireUniqueEmail = true; }
one of the issues have "IsUsernameEmailAddress" dynamic property added recently. I'm using 2.1 .net core. but could not see this.
Wondering do I need to use the above in this case? or Is it a bug?
Ex: Generate token
GenerateChangeEmailTokenAsync
thenChangeEmailAsync
to see the behaviour.The text was updated successfully, but these errors were encountered: