User1954082887 posted
I have a Registeration operation to be completed using WCF which is a 3 step process:
1) an external service will be called to register.
2) account id generated from above step will be saved here to Database1.
3) ID generated in above two steps will be saved in Database2.
I am thinking of including these into WCF transaction.
My question is if let's say 3rd step fail then can it rollback above two steps. If no then what is the benefit of transaction here ?
Hope I have made my question clear.