Enum EntityActionType

Namespace: ETLBox.Azure.Tables
Assembly: ETLBox.Azure.Tables.dll
Syntax
    public enum EntityActionType

Fields

NameDescription
Add

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

Delete

Delete the entity. This is equivalent to DeleteEntity(string, string, ETag, CancellationToken)

None
UpdateMerge

Update the entity in Merge mode. This is equivalent to UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken)

UpdateReplace

Update the entity in Replace mode. This is equivalent to UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken)

UpsertMerge

Upsert the entity in Merge mode. This is equivalent to UpsertEntity<T>(T, TableUpdateMode, CancellationToken)

UpsertReplace

Upsert the entity in Replace mode. This is equivalent to UpsertEntity<T>(T, TableUpdateMode, CancellationToken)