where method

QueryBuilder<OBJ, OBJ, QWhere> where({
  1. bool distinct = false,
  2. Sort sort = Sort.asc,
})

Start building a query using the QueryBuilder.

Implementation

QueryBuilder<OBJ, OBJ, QWhere> where(
    {bool distinct = false, Sort sort = Sort.asc}) {
  return QueryBuilder(this, distinct, sort);
}