Show / Hide Table of Contents

Interface IIdentityClaimTypeRepository

Inherited Members
IBasicRepository<IdentityClaimType, Guid>.DeleteAsync(Guid, bool, CancellationToken)
IBasicRepository<IdentityClaimType, Guid>.DeleteManyAsync(IEnumerable<Guid>, bool, CancellationToken)
IBasicRepository<IdentityClaimType>.InsertAsync(IdentityClaimType, bool, CancellationToken)
IBasicRepository<IdentityClaimType>.InsertManyAsync(IEnumerable<IdentityClaimType>, bool, CancellationToken)
IBasicRepository<IdentityClaimType>.UpdateAsync(IdentityClaimType, bool, CancellationToken)
IBasicRepository<IdentityClaimType>.UpdateManyAsync(IEnumerable<IdentityClaimType>, bool, CancellationToken)
IBasicRepository<IdentityClaimType>.DeleteAsync(IdentityClaimType, bool, CancellationToken)
IBasicRepository<IdentityClaimType>.DeleteManyAsync(IEnumerable<IdentityClaimType>, bool, CancellationToken)
IReadOnlyBasicRepository<IdentityClaimType, Guid>.GetAsync(Guid, bool, CancellationToken)
IReadOnlyBasicRepository<IdentityClaimType, Guid>.FindAsync(Guid, bool, CancellationToken)
IReadOnlyBasicRepository<IdentityClaimType>.GetListAsync(bool, CancellationToken)
IReadOnlyBasicRepository<IdentityClaimType>.GetCountAsync(CancellationToken)
IReadOnlyBasicRepository<IdentityClaimType>.GetPagedListAsync(int, int, string, bool, CancellationToken)
IRepository.IsChangeTrackingEnabled
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Domain.dll
Syntax
public interface IIdentityClaimTypeRepository : IBasicRepository<IdentityClaimType, Guid>, IBasicRepository<IdentityClaimType>, IReadOnlyBasicRepository<IdentityClaimType, Guid>, IReadOnlyBasicRepository<IdentityClaimType>, IRepository

Methods

AnyAsync(string, Guid?, CancellationToken)

Declaration
Task<bool> AnyAsync(string name, Guid? ignoredId = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string name
Guid? ignoredId
CancellationToken cancellationToken
Returns
Type Description
Task<bool>

GetCountAsync(string, CancellationToken)

Declaration
Task<long> GetCountAsync(string filter = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string filter
CancellationToken cancellationToken
Returns
Type Description
Task<long>

GetListAsync(string, int, int, string, CancellationToken)

Declaration
Task<List<IdentityClaimType>> GetListAsync(string sorting, int maxResultCount, int skipCount, string filter, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string sorting
int maxResultCount
int skipCount
string filter
CancellationToken cancellationToken
Returns
Type Description
Task<List<IdentityClaimType>>

GetListByNamesAsync(IEnumerable<string>, CancellationToken)

Declaration
Task<List<IdentityClaimType>> GetListByNamesAsync(IEnumerable<string> names, CancellationToken cancellationToken = default)
Parameters
Type Name Description
IEnumerable<string> names
CancellationToken cancellationToken
Returns
Type Description
Task<List<IdentityClaimType>>

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform