Show / Hide Table of Contents

Interface IOpenIddictScopeRepository

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

Methods

FindByIdAsync(Guid, CancellationToken)

Declaration
Task<OpenIddictScope> FindByIdAsync(Guid id, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid id
CancellationToken cancellationToken
Returns
Type Description
Task<OpenIddictScope>

FindByNameAsync(string, CancellationToken)

Declaration
Task<OpenIddictScope> FindByNameAsync(string name, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string name
CancellationToken cancellationToken
Returns
Type Description
Task<OpenIddictScope>

FindByNamesAsync(string[], CancellationToken)

Declaration
Task<List<OpenIddictScope>> FindByNamesAsync(string[] names, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string[] names
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictScope>>

FindByResourceAsync(string, CancellationToken)

Declaration
Task<List<OpenIddictScope>> FindByResourceAsync(string resource, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string resource
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictScope>>

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<OpenIddictScope>> GetListAsync(string sorting, int skipCount, int maxResultCount, string filter = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string sorting
int skipCount
int maxResultCount
string filter
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictScope>>

ListAsync(int?, int?, CancellationToken)

Declaration
Task<List<OpenIddictScope>> ListAsync(int? count, int? offset, CancellationToken cancellationToken = default)
Parameters
Type Name Description
int? count
int? offset
CancellationToken cancellationToken
Returns
Type Description
Task<List<OpenIddictScope>>

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