updateRow method

Updates a single ReadWriteTestEntry. The row needs to have its id set. Optionally, a list of columns can be provided to only update those columns. Defaults to all columns.

Implementation

Future<ReadWriteTestEntry> updateRow(
  _is.DatabaseSession session,
  ReadWriteTestEntry row, {
  _is.ColumnSelections<ReadWriteTestEntryTable>? columns,
  _is.Transaction? transaction,
}) async {
  return session.db.updateRow<ReadWriteTestEntry>(
    row,
    columns: columns?.call(ReadWriteTestEntry.t),
    transaction: transaction,
  );
}