Select from following answers:- Move the Product update code to the TransactionScope using block. Set the TransactionScopeOption to Suppress.

- Add the Enlist=true setting to the connection string.
- Move the Product update code to a try-catch block. Handle any exception.
- All Above
If the scope is instantiated with Suppress, it never takes part in a transaction, whether or not an ambient transaction is present.
If the scope is instantiated with Required and an ambient transaction is present, the scope joins that transaction. If the Product update fails, the ambient transaction will fail.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator