IQuerableReader<T>

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.

Task<List<T>> GetListByQueryAsync(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: Task<List<T>> - list of items