You use Microsoft .NET Framework 4 to develop an application that connects to a Microsoft SQL
Server 2008 database. The application uses nested transaction scopes. An inner transaction scope
contains code that inserts records into the database. You need to ensure that the inner transaction
can successfully commit even if the outer transaction rolls back. What are two possible
TransoctionScope constructors that you can use for the inner transaction to achieve this goal? (Each
correct answer presents a complete solution. Choose two.)
A.
TransactionScope(TransactionScopeOption.Required)
B.
TransactionScope ()
C.
TransactionScope(TransactionScopeOption.RequiresNew)
D.
TransoctionScope(TransactionScopeOption.Suppress)