DEV Community

Discussion on: Smooth Transactions with TransactionScope

Collapse
 
joaomarcusc profile image
João

IMHO one should always be careful with transactions that involve multiple resources. They may not scale so well and lead to synchronization/blocking issues. If the scope grows too big, it's better to split it across small scopes and allow intermediate states in your application.

Collapse
 
rionmonster profile image
Rion Williams

Hi João,

You are spot on here.

I have another post that’s in the pipeline that specifically talks about some of the issues, caveats, and just things anyone should be cognizant of before trying to handle these type of things (or if they should at all). Thanks again for bringing this up, it’s an important one.