deleteWhere method

Future<List<QueryLogEntry>> deleteWhere(
  1. Session session, {
  2. required WhereExpressionBuilder<QueryLogEntryTable> where,
  3. 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,
  );
}