Hi
I would like to know if it's possible to change the order of action when we do a Commit on a UnitOfWork ?
Right if I've correctly understand its "insert-update-delete"
But I've a problem right now with unique constraint :
- I delete a row with value "A" in a field with unique index
- I add a row with value "A" in a the same field
With a "insert-delete" order, I've a sql exception due to the unique index.Is it possible to change somewhere to have a "delete-insert" order ?
If not, maybe it's a good suggestion for the next versions ?
Thank you