4 references to UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserStore.cs (2)
38public UserStore(DbContext context, IdentityErrorDescriber? describer = null) : base(context, describer) { } 57public UserStore(TContext context, IdentityErrorDescriber? describer = null) : base(context, describer) { }
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
SqlStoreTestBase.cs (1)
109services.AddSingleton<IUserStore<TUser>>(new UserStore<TUser, TRole, TestDbContext, TKey>((TestDbContext)context));
UserStoreGuidKeyTest.cs (1)
36public ApplicationUserStore(TestDbContext context) : base(context) { }