deleteWhere method

Future<List<LogEntry>> deleteWhere(
  1. Session session, {
  2. required WhereExpressionBuilder<LogEntryTable> where,
  3. Transaction? transaction,
})

Implementation

Future<List<LogEntry>> deleteWhere(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<LogEntryTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteWhere<LogEntry>(
    where: where(LogEntry.t),
    transaction: transaction,
  );
}