Interface for data processing components that can query a list of data items.
Description
The IQuerableReader interface is used by data processing components that can query a list of data items.
Instance methods
getListByQuery
Gets a list of data items using a query string.
Future<List<T>> getListByQuery(IContext? context, String? query, SortParams? sort)
- context: IContext - (optional) a context to trace execution through a call chain.
- query: String? - (optional) query string
- sort: SortParams? - (optional) sorting parameters
- returns: Future<List<T>> - list of items