2 types derived from UserOnlyStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
14public class UserOnlyStore<TUser> : UserOnlyStore<TUser, DbContext, string> where TUser : IdentityUser<string>, new() 29public class UserOnlyStore<TUser, TContext> : UserOnlyStore<TUser, TContext, string>
1 instantiation of UserOnlyStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
SqlStoreOnlyUsersTestBase.cs (1)
64services.AddSingleton<IUserStore<TUser>>(new UserOnlyStore<TUser, TestUserDbContext, TKey>((TestUserDbContext)context));
1 reference to UserOnlyStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
IdentityEntityFrameworkBuilderExtensions.cs (1)
80userStoreType = typeof(UserOnlyStore<,,>).MakeGenericType(userType, contextType, keyType);