Interface for data processing components that can retrieve a page of data items by a filter.
Description
The IFilteredPageReader interface is used by data processing components that can retrieve a page of data items through the use of a filter.
Instance methods
get_page_by_filter
Gets a page of data items using filter parameters.
get_page_by_filter(context: Optional[IContext], filter: Optional[FilterParams], paging: Optional[PagingParams], sort: Optional[SortParams] = None): DataPage
- context: IContext - (optional) a context to trace execution through a call chain.
- filter: Optional[FilterParams] - (optional) filter parameters
- paging: Optional[PagingParams] - (optional) paging parameters
- sort: Optional[SortParams] - (optional) sort parameters
- returns: DataPage - list of items