MR.AspNet.Identity.EntityFramework6 icon indicating copy to clipboard operation
MR.AspNet.Identity.EntityFramework6 copied to clipboard

EntityFramework 6 provider + InMemory providers for Asp.Net Core Identity.

Results 5 MR.AspNet.Identity.EntityFramework6 issues
Sort by recently updated
recently updated
newest added

CSProj files have been updated to enable SourceLink in your nuget --- *[This pull request was created with an automated workflow]* I noticed that your repository and Nuget package are...

Bumps [Microsoft.AspNetCore.Identity](https://github.com/aspnet/Identity) from 2.0.0 to 2.0.4. Release notes *Sourced from [Microsoft.AspNetCore.Identity's releases](https://github.com/aspnet/Identity/releases).* > ## 2.0.1 > ### Bugs Fixed > > * Revert the fix introduced in [aspnet/Identity#1395](https://github-redirect.dependabot.com/aspnet/Identity/issues/1395) ([#1483](https://github-redirect.dependabot.com/aspnet/Identity/issues/1483)) >...

dependencies

Hey; We are seeing an issue with 2FA and I'm not sure if its an Identity change or an issue with this provider. https://github.com/aspnet/Identity/issues/1383#issuecomment-324434551 Any thoughts?

I am facing difficulty in setting up User Store using this library. There is no sample or usage guide that clearly showcase how to setup user store. My code is...

Here is my UserStoreInt implementation, ``` public class UserStore : UserStoreInt { public UserStore(DbContext context) : base(context) { } } ``` And I am accessing FindByIdAsync method in some repository...