title | ms.date | ms.topic | dev_langs | helpviewer_keywords | ms.assetid | author | ms.author | manager | ms.workload | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
How to: Save data by using a transaction |
11/04/2016 |
how-to |
|
|
8b835e8f-34a3-413d-9bb5-ebaeb87f1198 |
ghogen |
ghogen |
jillfra |
|
You save data in a transaction by using the xref:System.Transactions namespace. Use the xref:System.Transactions.TransactionScope object to participate in a transaction that is automatically managed for you.
Projects are not created with a reference to the System.Transactions assembly, so you need to manually add a reference to projects that use transactions.
The easiest way to implement a transaction is to instantiate a xref:System.Transactions.TransactionScope object in a using
statement. (For more information, see Using statement, and Using statement.) The code that runs within the using
statement participates in the transaction.
To commit the transaction, call the xref:System.Transactions.TransactionScope.Complete%2A method as the last statement in the using block.
To roll back the transaction, throw an exception prior to calling the xref:System.Transactions.TransactionScope.Complete%2A method.
-
On the Project menu, select Add Reference.
-
On the .NET tab (SQL Server tab for SQL Server projects), select System.Transactions, and then select OK.
A reference to System.Transactions.dll is added to the project.
-
Add code to save data within the using statement that contains the transaction. The following code shows how to create and instantiate a xref:System.Transactions.TransactionScope object in a using statement:
[!code-vbVbRaddataSaving#11] [!code-csharpVbRaddataSaving#11]