deleteWhere method
Future<List<PasskeyAccount> >
deleteWhere(
- DatabaseSession session, {
- required WhereExpressionBuilder<
PasskeyAccountTable> where, - Transaction? transaction,
Deletes all rows matching the where expression.
Implementation
Future<List<PasskeyAccount>> deleteWhere(
_i1.DatabaseSession session, {
required _i1.WhereExpressionBuilder<PasskeyAccountTable> where,
_i1.Transaction? transaction,
}) async {
return session.db.deleteWhere<PasskeyAccount>(
where: where(PasskeyAccount.t),
transaction: transaction,
);
}