Enum TableStorageStrategy
Defines the possible strategies when updating an entity in a Table Storage.
Namespace: Celerik.NetCore.Util
Assembly: cs.temp.dll.dll
Syntax
public enum TableStorageStrategy
Fields
| Name | Description |
|---|---|
| InsertOrMerge | The entity will be inserted if not exists, otherwise the properties of the updating entity will be merged into the properties of the existing one. |
| InsertOrReplace | The entity will be inserted if not exists, otherwise the existing entity will be completely replaced by the updating entity. |
| Merge | The properties of the updating entity will be merged into the properties of the existing one. |
| Replace | The existing entity will be completely replaced by the updating entity. |