-
Notifications
You must be signed in to change notification settings - Fork 0
IReadonlyRepository.GetWithFilter
dogguts edited this page Apr 2, 2019
·
2 revisions
|
GetWithFilter(IRepositoryFilter<TEntity>, IRepositorySort<TEntity>, (int Page, int PageSize)?) |
Get Entities by filter |
| Obsolete! Get Entities by filter |
Get Entities by filter
(IEnumerable<TEntity> Data, int Total) GetWithFilter(IRepositoryFilter<TEntity> filter, IRepositorySort<TEntity> sorts = null, (int Page, int PageSize)? paging = null)Filter specification
Optional sort specification
Optional The current Page and pageSize for paging
Data: results matching the filter and sorted by sorts, paged by paging.
Total: total matches the filter produced (regardless of paging)
GetWithFilter((IRepositoryFilter<TEntity> filter, IRepositorySort<TEntity> sorts), (int Page, int PageSize)?)
Obsolete! Get Entities by filter
(IEnumerable<TEntity> Data, int Total) GetWithFilter((IRepositoryFilter<TEntity> filter, IRepositorySort<TEntity> sorts) specification, (int Page, int PageSize)? paging = null)Filter and Sort specification
Optional The current Page and pageSize for paging
Data: results matching the filter and sorted by sorts, paged by paging.
Total: total matches the filter produced (regardless of paging)