Interface IIdentityRoleRepository
Assembly: Volo.Abp.Identity.Domain.dll
Syntax
public interface IIdentityRoleRepository : IBasicRepository<IdentityRole, Guid>, IBasicRepository<IdentityRole>, IReadOnlyBasicRepository<IdentityRole, Guid>, IReadOnlyBasicRepository<IdentityRole>, IRepository
Methods
FindByNormalizedNameAsync(string, bool, CancellationToken)
Declaration
Task<IdentityRole> FindByNormalizedNameAsync(string normalizedRoleName, bool includeDetails = true, CancellationToken cancellationToken = default)
Parameters
Returns
GetCountAsync(string, CancellationToken)
Declaration
Task<long> GetCountAsync(string filter = null, CancellationToken cancellationToken = default)
Parameters
Returns
GetDefaultOnesAsync(bool, CancellationToken)
Declaration
Task<List<IdentityRole>> GetDefaultOnesAsync(bool includeDetails = false, CancellationToken cancellationToken = default)
Parameters
Returns
GetListAsync(IEnumerable<Guid>, CancellationToken)
Declaration
Task<List<IdentityRole>> GetListAsync(IEnumerable<Guid> ids, CancellationToken cancellationToken = default)
Parameters
Returns
GetListAsync(string, int, int, string, bool, CancellationToken)
Declaration
Task<List<IdentityRole>> GetListAsync(string sorting = null, int maxResultCount = 2147483647, int skipCount = 0, string filter = null, bool includeDetails = false, CancellationToken cancellationToken = default)
Parameters
Returns
GetListWithUserCountAsync(string, int, int, string, bool, CancellationToken)
Declaration
Task<List<IdentityRoleWithUserCount>> GetListWithUserCountAsync(string sorting = null, int maxResultCount = 2147483647, int skipCount = 0, string filter = null, bool includeDetails = false, CancellationToken cancellationToken = default)
Parameters
Returns
RemoveClaimFromAllRolesAsync(string, bool, CancellationToken)
Declaration
Task RemoveClaimFromAllRolesAsync(string claimType, bool autoSave = false, CancellationToken cancellationToken = default)
Parameters
Returns
Extension Methods