delete static method

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

Implementation

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