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