I have this service which is Singleton and Single threaded and serves bunch of low volume clients. It uses Entity Framework and Data in SQL Server.
If any one of the client's request to Save Data fails, all the subsequent requests are being failed as every time it is trying to save the original failed data object.
Is there is any way to Undo changes to EF data when save fails?
Thanks in Advance