MerrionComputing / EventsSourcing-on-Azure-Functions

A library to demonstrate doing Event Sourcing as a data persistence mechanism for Azure Functions
MIT License
103 stars 20 forks source link

Use "Replace" for Table concurrency protection #45

Closed MerrionComputing closed 3 years ago

MerrionComputing commented 3 years ago

This currently uses an "if-match" header over a CreateOrReplace but this is undocumented and instead a Replace should be used with the ETag set accordingly in the entity.

MerrionComputing commented 3 years ago

Related to issue #44

MerrionComputing commented 3 years ago

Resolved in lates code to explicitly use Insert or Replace