deleteWhere method

Future<List<int>> deleteWhere(
  1. Session session, {
  2. required WhereExpressionBuilder<DatabaseMigrationVersionTable> where,
  3. Transaction? transaction,
})

Implementation

Future<List<int>> deleteWhere(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<DatabaseMigrationVersionTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.dbNext.deleteWhere<DatabaseMigrationVersion>(
    where: where(DatabaseMigrationVersion.t),
    transaction: transaction,
  );
}