Does anyone know any way of implementing an atomic action in C#? -


atomic: atomic means statements (sql statement or operations) part of transaction should work atomic operation i.e. either successful or should fail. want know if there way of implementing atomic actions in c#?

you use transactionscope class purpose, which

makes code block transactional

for implementation details, please have here.


Comments