Interface for data processing components that can retrieve a list of data items through the use of a filter.
Description
The IFilteredReader interface is used by data processing components that can retrieve a list of data items through the use of a filter.
Instance methods
get_list_by_filter
Gets a list of data items using filter parameters.
get_list_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
- sort: Optional[SortParams] - (optional) sort parameters
- returns: List[T] - list of items