1 implementation of IQueryableRoleStore
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>;