4 implementations of IQueryableRoleStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
RoleStore.cs (2)
50IQueryableRoleStore<TRole>, 73IQueryableRoleStore<TRole>,
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
12IQueryableRoleStore<TRole>,
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
24IQueryableRoleStore<TRole>,
6 references to IQueryableRoleStore
Microsoft.Extensions.Identity.Core (6)
RoleManager.cs (6)
96/// Gets an IQueryable collection of Roles if the persistence store is an <see cref="IQueryableRoleStore{TRole}"/>, 99/// <value>An IQueryable collection of Roles if the persistence store is an <see cref="IQueryableRoleStore{TRole}"/>.</value> 100/// <exception cref="NotSupportedException">Thrown if the persistence store is not an <see cref="IQueryableRoleStore{TRole}"/>.</exception> 109var queryableStore = Store as IQueryableRoleStore<TRole>; 129return Store is IQueryableRoleStore<TRole>;