While implementing transaction scope in mvc application. is it better to create a transaction manager while calling the wcf service. or is it better to have the transactionscope within the business object?
While implementing transaction scope in mvc application. is it better to create a transaction
Share
I’d personally go for separation of concerns. Business object has nothing to do with transaction scope, so i’d vote for transaction manager (if it’s a big application) or combine it with your DAL (if it’s not that modular/big).