where static method

Query<$OrmMigrationRecord> where(
  1. String column,
  2. String operator,
  3. dynamic value, {
  4. String? connection,
})

Implementation

static Query<$OrmMigrationRecord> where(
  String column,
  String operator,
  dynamic value, {
  String? connection,
}) => Model.where<$OrmMigrationRecord>(
  column,
  operator,
  value,
  connection: connection,
);