query<TDao> abstract method

Future<List<TDao>> query<TDao>(
  1. QuerySource<TDao> bean, {
  2. Filter filter = Filter.empty,
  3. List<QuerySelect> distinct = const <QuerySelect>[],
  4. Sort sort = Sort.empty,
  5. int offset = 0,
  6. int limit = -1,
  7. bool forUpdate = false,
})

Implementation

Future<List<TDao>> query<TDao>(
  QuerySource<TDao> bean, {
  Filter filter = Filter.empty,
  List<QuerySelect> distinct = const <QuerySelect>[],
  Sort sort = Sort.empty,
  int offset = 0,
  int limit = -1,
  bool forUpdate = false,
});