delete static method
Future<int>
delete(
- Session session, {
- required SessionLogEntryExpressionBuilder where,
- 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,
);
}