I am using the corporate library data access unit in my asp.net application. I want to implement a transaction from the level of business logic, through several stored procedures. Entlib opens a new connection to access the database. Does using transaction scope use the following distributed transaction?
using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required))
{
scope.Complete();
}
Are there any better methods for implementing a transaction from BLL?
source
share