Interface IReadOnlyBasicRepository<TEntity>
Assembly: Volo.Abp.Ddd.Domain.dll
Syntax
public interface IReadOnlyBasicRepository<TEntity> : IRepository where TEntity : class, IEntity
Type Parameters
Methods
GetCountAsync(CancellationToken)
Declaration
Task<long> GetCountAsync(CancellationToken cancellationToken = default)
Parameters
Returns
GetListAsync(bool, CancellationToken)
Declaration
Task<List<TEntity>> GetListAsync(bool includeDetails = false, CancellationToken cancellationToken = default)
Parameters
Returns
GetPagedListAsync(int, int, string, bool, CancellationToken)
Declaration
Task<List<TEntity>> GetPagedListAsync(int skipCount, int maxResultCount, string sorting, bool includeDetails = false, CancellationToken cancellationToken = default)
Parameters
Returns
Extension Methods