query method

NSQuery query(
  1. String tableName, {
  2. List<String>? orderBy,
})

Start building a query against tableName.

Implementation

NSQuery query(String tableName, {List<String>? orderBy}) {
  _checkOpen();
  return NSQuery.create(this, tableName, orderBy: orderBy);
}