update method
Future<List<LogEntry> >
update(
- Session session,
- List<
LogEntry> rows, { - ColumnSelections<
LogEntryTable> ? columns, - Transaction? transaction,
Implementation
Future<List<LogEntry>> update(
_i1.Session session,
List<LogEntry> rows, {
_i1.ColumnSelections<LogEntryTable>? columns,
_i1.Transaction? transaction,
}) async {
return session.dbNext.update<LogEntry>(
rows,
columns: columns?.call(LogEntry.t),
transaction: transaction,
);
}