updateById method

Future<UserProfileImage?> updateById(
  1. DatabaseSession session,
  2. UuidValue id, {
  3. required ColumnValueListBuilder<UserProfileImageUpdateTable> columnValues,
  4. Transaction? transaction,
})

Updates a single UserProfileImage by its id with the specified columnValues. Returns the updated row or null if no row with the given id exists.

Implementation

Future<UserProfileImage?> updateById(
  _is.DatabaseSession session,
  _is.UuidValue id, {
  required _is.ColumnValueListBuilder<UserProfileImageUpdateTable>
  columnValues,
  _is.Transaction? transaction,
}) async {
  return session.db.updateById<UserProfileImage>(
    id,
    columnValues: columnValues(UserProfileImage.t.updateTable),
    transaction: transaction,
  );
}