updateWhere method

Updates all CloudStorageDirectUploadEntrys matching the where expression with the specified columnValues. Returns the list of updated rows.

Implementation

Future<List<CloudStorageDirectUploadEntry>> updateWhere(
  _i1.Session session, {
  required _i1.ColumnValueListBuilder<
    CloudStorageDirectUploadEntryUpdateTable
  >
  columnValues,
  required _i1.WhereExpressionBuilder<CloudStorageDirectUploadEntryTable>
  where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<CloudStorageDirectUploadEntryTable>? orderBy,
  _i1.OrderByListBuilder<CloudStorageDirectUploadEntryTable>? orderByList,
  bool orderDescending = false,
  _i1.Transaction? transaction,
}) async {
  return session.db.updateWhere<CloudStorageDirectUploadEntry>(
    columnValues: columnValues(CloudStorageDirectUploadEntry.t.updateTable),
    where: where(CloudStorageDirectUploadEntry.t),
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(CloudStorageDirectUploadEntry.t),
    orderByList: orderByList?.call(CloudStorageDirectUploadEntry.t),
    orderDescending: orderDescending,
    transaction: transaction,
  );
}