queryBy method

Stream<Row> queryBy(
  1. Iterable<String>? fields,
  2. String otype,
  3. Map<String, dynamic> whereValues, [
  4. AccessOption? option,
])

Queries fields of otype for the criteria specified in

  • whereValues (AND-ed together).
    • option - whether to use forUpdate, forShare or null.

Implementation

Stream<Row> queryBy(Iterable<String>? fields, String otype,
  Map<String, dynamic> whereValues, [AccessOption? option])
=> _queryBy(fields, otype, whereValues, option, null);