I am implementing an AspNet identity in an ASP.NET MVC application. But when I look at online materials, I am very puzzled by the two dlls Microsoft.Aspnet.Identity.Coreand Microsoft.AspNetCore.Identity.
I know what Microsoft.AspNetCore.Identityshould be used in .NET Core applications, but Microsoft.Aspnet.Identity.Coreit does not seem to have the latest updates and found that it does not even allow the user to log in (throwing Failure in the asp user identity). So my question is: can I use Microsoft.AspNetCore.IdentityMVC in the application or should I stick with it Microsoft.Aspnet.Identity.Core?
source
share