TableTransactionActionType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The type of operation to be executed on a table entity as part of a table transactional batch operations.
public enum TableTransactionActionType
type TableTransactionActionType =
Public Enum TableTransactionActionType
- Inheritance
-
TableTransactionActionType
Fields
Name | Value | Description |
---|---|---|
Add | 0 | Add the entity to the table. This is equivalent to AddEntity<T>(T, CancellationToken). |
UpdateMerge | 1 | Update the entity in Merge mode. This is equivalent to UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken) |
UpdateReplace | 2 | Update the entity in Replace mode. This is equivalent to UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken) |
Delete | 3 | Delete the entity. This is equivalent to DeleteEntity(String, String, ETag, CancellationToken) |
UpsertMerge | 4 | Upsert the entity in Merge mode. This is equivalent to UpsertEntity<T>(T, TableUpdateMode, CancellationToken) |
UpsertReplace | 5 | Upsert the entity in Replace mode. This is equivalent to UpsertEntity<T>(T, TableUpdateMode, CancellationToken) |
Applies to
Azure SDK for .NET