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