Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 767001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T17:08:21+00:00 2026-05-14T17:08:21+00:00

i always using the following format to use transactionscope. using(TransactionScope scope = new TransactionScope()){

  • 0

i always using the following format to use transactionscope.

using(TransactionScope scope = new TransactionScope()){
  ....
}

sometimes i want to wrap the transactionscope to a new class, for example DbContext class, i want to using the statement like

dbContext.Begin();
...
dbContext.Submit();

it seems the transactioncope class need use “using”statement to do dispose, i want to know if there is anyway not use “using”.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T17:08:21+00:00Added an answer on May 14, 2026 at 5:08 pm

    You can design your DbContext class as follows:

    public sealed class DbContext : IDisposable
    {
        private bool disposed;
        private TransactionScope scope;
    
        public void Begin()
        {
            if (this.disposed) throw new ObjectDisposedException();
            this.scope = new TransactionScope();
        }
    
        void Submit()
        {
            if (this.disposed) throw new ObjectDisposedException();
            if (this.scope == null) throw new InvalidOperationException();
            this.scope.Complete();
        }
    
        public void Dispose()
        {
            if (this.scope != null)
            {
                this.scope.Dispose();
                this.scope = null;
            }
            this.disposed = true;
        }
    }
    

    and you can use it as follows:

    using (var context = new DbContext())
    {
        context.Begin();
    
        // Operations.
    
        context.Submit();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using following PHP code for trigger creation but always get error, please
I am using the following code: if (store.getItem('TopicID') != 00) TopidID is always 4
I'm using chrome devtools network API and the following code but always the alert
I am trying to learn a dataset using Svmlight. I always see the following
I'm using the following piece of Objective-C code to format a NSNumber, and it
I need to query SQLite datebase table using the following SQL Statement. SELECT *
I am creating a Word format .doc using the following code, then cfheader and
I am using Python to read a file of the following format: iter1 iter2
What are the disadvantages of always using alginment of 1? glPixelStorei(GL_UNPACK_ALIGNMENT, 1) glPixelStorei(GL_PACK_ALIGNMENT, 1)
I always hear using global variables are dangerous. Does this apply to Drupal? Take

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.