Hi,
I am currently experiencing concurrency issues with a custom built auto number entity and came across this link:
https://jonasr.app/2020/03/anm-unique-seq/
To my surprise the new UI offers a auto number data type, I am however a bit concerned how this data type handles concurrency issues. I have not been able to find any MS source explaining exactly how this field works, does it utilize SQLs built in auto number feature or how does it work?
I have a system with a high load from an external API and internal plugins creating transactions. It is very important that all transactions get a unique number and are not subject to any concurrency related exception as I am currently experiencing with the current, optimistic concurrency approach. This main issue is that the full database transaction is rolled back, which causes issues when sales are coming in from integrated systems.
Please let me know if you have came across similar issues and how these were handled.
I cannot utilize the 'normal' auto number feature as the increments are different based on the customers brand etc. Meaning I would need some kind of plugin logic as described in the link above.