Same as a single update but for a group of entities sharing the same transaction (if any).

C# | Visual Basic | Visual C++ | J# |
[ObsoleteAttribute("Use WriteMultiple() with the appropriate WriteModifiers instead.")] T[] UpdateMultiple<T>( T[] objects )
<ObsoleteAttribute("Use WriteMultiple() with the appropriate WriteModifiers instead.")> _ Function UpdateMultiple(Of T) ( _ objects As T() _ ) As T()
[ObsoleteAttribute(L"Use WriteMultiple() with the appropriate WriteModifiers instead.")] generic<typename T> array<T>^ UpdateMultiple( array<T>^ objects )

- T
- Type of object to update.

- objects (array< T >[]()[])
- Objects with a SpaceID defined.

Previous value on successful update, null if object was written (not updated).

Exception | Condition |
---|---|
EntryNotInSpaceException | An entry with matching ID does not exist in space. |
OperationTimeoutException | Timeout expired after waiting for a transactional proper matching entry (when using UpdateModifiers.UpdateOrWrite). |
UnusableEntryException | A serialized field of the object being read cannot be deserialized. |
TransactionException | Transaction error occured. |
UpdateMultiplePartialFailureException | Some of the entries failed to update (see exception's properties for more data). |
EntryVersionConflictException | Operation is rejected as a result of optimistic locking version conflict. |
InactiveSpaceException | The space is in backup mode and therefore is not active. |