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