Hello, we have a simple scenario (attached). One page with just a Button "Save", if two users make click at the same time on the button will throw an Exception: SQLConnection does not suppor parallel transactions (we use UnitOfWork with ExplicitBeginTransaction, ExplicitCommitTransaction and ExplicitRollbackTransaction)
Is there any way to throw this Exception only if the object is the same? Because too many users can access to this page with different objects and when two users click on "Save", the application throws this error.
Thank you,