JudahGabriel / RavenDB.Identity

RavenDB Identity provider for ASP.NET Core. Let RavenDB manage your users and logins.
https://www.nuget.org/packages/RavenDB.Identity/1.0.0
MIT License
61 stars 29 forks source link

Fixed issue with UserStore.CreateAsync not updating if the UserName d… #24

Closed JoshClose closed 4 years ago

JoshClose commented 4 years ago

…idn't change.

Fixed issue with UserStore.CreateAsync using the UserName instead of Email for the compare/exchange. Fixed issue with UserStore.FindByNameAsync looking in the compare/exchange for the user name when it holds emails. Update project Microsoft references to 3.1.0. Microsoft.AspNetCore.Identity only goes to 2.2, so it was swapped with Microsoft.Extensions.Identity.Core 3.1.0 Changed IdentityBuilderExtensions to build off of IdentityBuilder instead of IServiceCollection due to the 3.1.0 update.

JoshClose commented 4 years ago

You're welcome!