deleteWhere method

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

Implementation

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