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