3 types derived from UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserStore.cs (2)
30public class UserStore<TUser> : UserStore<TUser, IdentityRole, DbContext, string> 47public class UserStore<TUser, TRole, TContext> : UserStore<TUser, TRole, TContext, string>
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
UserStoreGuidKeyTest.cs (1)
34public class ApplicationUserStore : UserStore<GuidUser, GuidRole, TestDbContext, Guid>
1 instantiation of UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
SqlStoreTestBase.cs (1)
109services.AddSingleton<IUserStore<TUser>>(new UserStore<TUser, TRole, TestDbContext, TKey>((TestDbContext)context));
5 references to UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (5)
IdentityEntityFrameworkBuilderExtensions.cs (1)
53userStoreType = typeof(UserStore<,,,>).MakeGenericType(userType, roleType, contextType, keyType);
UserOnlyStore.cs (2)
53/// Constructs a new instance of <see cref="UserStore{TUser, TRole, TContext, TKey}"/>. 79/// Constructs a new instance of <see cref="UserStore{TUser, TRole, TContext, TKey}"/>.
UserStore.cs (2)
74/// Constructs a new instance of <see cref="UserStore{TUser, TRole, TContext, TKey}"/>. 106/// Constructs a new instance of <see cref="UserStore{TUser, TRole, TContext, TKey}"/>.