update method

Future<List<SessionLogEntry>> update(
  1. Session session,
  2. List<SessionLogEntry> rows, {
  3. ColumnSelections<SessionLogEntryTable>? columns,
  4. Transaction? transaction,
})

Implementation

Future<List<SessionLogEntry>> update(
  _i1.Session session,
  List<SessionLogEntry> rows, {
  _i1.ColumnSelections<SessionLogEntryTable>? columns,
  _i1.Transaction? transaction,
}) async {
  return session.dbNext.update<SessionLogEntry>(
    rows,
    columns: columns?.call(SessionLogEntry.t),
    transaction: transaction,
  );
}