Hi, I need to ensure 2 calls are enlisted in a transaction
Sub InsertOrder(order) ...insert order header SQL ....insert order items SQL (LOOP) End Sub
I am aware I can accomplish this via a transaction scope, however, isn't there a "Attribute" available for this?
Transaction.Scope()>_ Public Sub InsertOrder(order) End Sub