Query<T>.fromCondition constructor

Query<T>.fromCondition(
  1. dynamic conditions,
  2. QueryAble ctx,
  3. Orm<T> ormap
)

Implementation

Query.fromCondition(this.conditions, this.ctx, this.ormap) {
  statement =
      'SELECT * from "${ormap.tableInfo.tableName}" where $conditions';
}