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