Click here to Skip to main content
15,884,821 members
Articles / Programming Languages / C#
Tip/Trick

Using of .NET TransactionScope

Rate me:
Please Sign up or sign in to vote.
5.00/5 (14 votes)
24 Jan 2010CPOL 25.7K   8   2
Using of .NET TransactionScope

Introduction

Working on the distributed database management system; we are familiar with using the SqlTransaction. The purpose of using Transaction is to get your SqlTransaction info / status from the front end and much more important is to add the rollback functionality to call, so that you can perform a smooth transaction on your client-server application module.

As I discussed earlier, we are familiar with SqlTransaction (.NET framework 2.0)... We will not discuss about using of SqlTransaction… .NET provides us with the System.Transaction assembly where you will find the System.Transactions.TransactionScope class. Using of TransactionScope() is much easier rather than the SqlTransaction such as ease of managing your transaction, need to write couple of code to manage, calling Commit, etc. A sample code snippet is given below:

Example

C#
TransactionOptions txOptions = new TransactionOptions();
using (TransactionScope txScope =
      new TransactionScope(TransactionScopeOption.Required, txOptions))
     {
       try
          {
                // do something      
          	txScope.Complete();
          }
       catch (SqlException sqlError)
          {
                
          }
     }

Be careful when using this. If you are not careful to perform all steps of the transaction on the same connection, the transaction is treated as a distributed (multi database) transaction and incurs a rather steep performance penalty. Examine the Microsoft Enterprise Model application blocks to see how they managed this.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionVB Pin
Mohammad Safari Mehmandosty2-Sep-12 2:13
Mohammad Safari Mehmandosty2-Sep-12 2:13 
AnswerRe: VB Pin
Md. Marufuzzaman2-Sep-12 4:13
professionalMd. Marufuzzaman2-Sep-12 4:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.