queryWith method

  1. @deprecated
Stream<Row> queryWith(
  1. Iterable<String>? fields,
  2. String otype,
  3. String? whereClause, [
  4. Map<String, dynamic>? whereValues,
  5. String? fromClause,
  6. String? shortcut,
  7. AccessOption? option,
])

Implementation

@deprecated
Stream<Row> queryWith(Iterable<String>? fields, String otype,
    String? whereClause, [Map<String, dynamic>? whereValues,
    String? fromClause, String? shortcut, AccessOption? option])
=> queryFrom(fields, fromClause ?? otype, whereClause,
    whereValues, shortcut, option);