你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

TableTransactionActionType 枚举

定义

要作为表事务批处理操作的一部分对表实体执行的操作类型。

public enum TableTransactionActionType
type TableTransactionActionType = 
Public Enum TableTransactionActionType
继承
TableTransactionActionType

字段

Add 0

将实体添加到表中。 这等效于 AddEntity<T>(T, CancellationToken)

Delete 3

删除实体。 这等效于 DeleteEntity(String, String, ETag, CancellationToken)

UpdateMerge 1

Merge 模式下更新实体。 这等效于 UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken)

UpdateReplace 2

Replace 模式下更新实体。 这等效于 UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken)

UpsertMerge 4

Merge 模式下插入实体。 这等效于 UpsertEntity<T>(T, TableUpdateMode, CancellationToken)

UpsertReplace 5

Replace 模式下插入实体。 这等效于 UpsertEntity<T>(T, TableUpdateMode, CancellationToken)

适用于