updateRow method

Future<QueryLogEntry> updateRow(
  1. Session session,
  2. QueryLogEntry row, {
  3. ColumnSelections<QueryLogEntryTable>? columns,
  4. 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,
  );
}