I use DbContextTransaction in UOW design pattern with EntityFrameWork 6.1, all is ok except Rollback the DBContext after Rollback of transaction Which I mean is like below :
- DBContext is on initial sate
- Create a transaction
- Do some work: 3.1 create childs of the parent entity and save the entity 3.2 Call SaveChanges of context
- Exception is thrown after this
- Call RollBack of transaction:
Expected: Data is not saved nether in Database nor the DBContext What happens: Data is not saved in DB BUT IT STILL EXISTS ALWAYS IN CONTEXT !!
I tried using the ChangeTracker but all entities states is Unchanged .
So the question: How to rollback the modification in the Context also after calling SaveChanges.
I hope founding help because I pass a lot of time trying many forum's solutions
You don't. Just create a new DbContext instance. The unsaved changes in the DbContext are retained, as you might want to retry SaveChanges after the rollback.