TableTransactionActionType Enum

Definition

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

Add 0

Add the entity to the table. This is equivalent to AddEntity<T>(T, CancellationToken).

Delete 3

Delete the entity. This is equivalent to DeleteEntity(String, String, ETag, 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)

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