updateRow method
Future<FutureCallClaimEntry>
updateRow(
- DatabaseSession session,
- FutureCallClaimEntry row, {
- ColumnSelections<
FutureCallClaimEntryTable> ? columns, - Transaction? transaction,
Updates a single FutureCallClaimEntry. 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<FutureCallClaimEntry> updateRow(
_i1.DatabaseSession session,
FutureCallClaimEntry row, {
_i1.ColumnSelections<FutureCallClaimEntryTable>? columns,
_i1.Transaction? transaction,
}) async {
return session.db.updateRow<FutureCallClaimEntry>(
row,
columns: columns?.call(FutureCallClaimEntry.t),
transaction: transaction,
);
}