3 types derived from RoleStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
RoleStore.cs (2)
15public class RoleStore<TRole> : RoleStore<TRole, DbContext, string> 31public class RoleStore<TRole, TContext> : RoleStore<TRole, TContext, string>
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
UserStoreGuidKeyTest.cs (1)
39public class ApplicationRoleStore : RoleStore<GuidRole, TestDbContext, Guid>
1 instantiation of RoleStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
SqlStoreTestBase.cs (1)
114services.AddSingleton<IRoleStore<TRole>>(new RoleStore<TRole, TestDbContext, TKey>((TestDbContext)context));
2 references to RoleStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
IdentityEntityFrameworkBuilderExtensions.cs (1)
54roleStoreType = typeof(RoleStore<,,>).MakeGenericType(roleType, contextType, keyType);
RoleStore.cs (1)
57/// Constructs a new instance of <see cref="RoleStore{TRole, TContext, TKey}"/>.