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