Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
UpdateMode type
- Package:
- @azure/data-tables
The different modes for Update and Upsert methods
- Merge: Updates an entity by updating the entity's properties without replacing the existing entity.
- Replace: Updates an existing entity by replacing the entire entity.
type UpdateMode = "Merge" | "Replace"
