2 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>
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}"/>.