deleteWhere method
      
Future<List<LogEntry> > 
deleteWhere(
    
- Session session, {
- required WhereExpressionBuilder<LogEntryTable> where,
- Transaction? transaction,
Deletes all rows matching the where expression.
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,
  );
}