delete static method

Future<int> delete(
  1. Session session, {
  2. required LogEntryExpressionBuilder where,
  3. Transaction? transaction,
})

Implementation

static Future<int> delete(
  _i1.Session session, {
  required LogEntryExpressionBuilder where,
  _i1.Transaction? transaction,
}) async {
  return session.db.delete<LogEntry>(
    where: where(LogEntry.t),
    transaction: transaction,
  );
}