I have an ASP.NET application that uses a layered architecture e.g. presentation layer, business logic layer, data access layer.
I don\'t want to the business layer to h
Not with entity framework, but I had tried to create a sample with two insert stored procedures being executed separately in the data access layer(using data access application block 3.1), wrapped inside TransactionScope context in Service/BLL, it did not work. One insert passed, other one failed and data WAS commited.
Did you have any success doing this yourself?