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

  • SEARCH
  • Home
  • 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 3485000
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:51:17+00:00 2026-05-18T10:51:17+00:00

I realise this question has been asking before, but I’ve yet to find an

  • 0

I realise this question has been asking before, but I’ve yet to find an answer that actually works.

My issue is occuring when my unit tests are trying to call a web service that uses Linq to query the database.

The unit test is set up like so:

[TestInitialize]
public void SetUp()
{
    var scope = new TransactionScope(TransactionScopeOption.Required,TimeSpan.MaxValue);
    var database = new DatabaseDataContext();
}

[TestCleanup]
public void TearDown()
{
    scope.Dispose();
    database.Dispose();
}

[TestMethod]
public void GetCategoryList_Success()
{
    // create test data
    var result = service.GetItems();
}

The service.GetItems method looks like so:

try
{
    using (DatabaseDataContext database = new DatabaseDataContext())
    {
        var items = (from i in database.Items
                    select i).ToList<Items>();
        return items;
    }
}
catch (Exception ex)
{
   // log error
   return null;
}

When the Linq query tries to execute, the following exception is thrown:

The operation is not valid for the state of the transaction.

I believe this is to do with nested transactions, but I need to keep the transaction in the test class open so that the test data is not actually saved to the database and I can dispose of it once the test is run.

Also, my hosting is on a shared instance, so I am unable to make any changes to the server directly.

Is there a way to get this to work as is, or alternatively, is there an alternative to using TransactionScope in this context?

  • 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-18T10:51:17+00:00Added an answer on May 18, 2026 at 10:51 am

    You are trying to create two connections to the same database within a single TransactionScope – one connection for the test process, and another one for the web service process. This doesn’t work because in the database tranasctions from different processes obviously can’t be nested.

    You should change your approach to testing here. Read Jan’s answer.

    As a workaround, you could make your web service manage the transaction. A method, say, BeginGlobalTran should create a global Transaction (or TransactionScope) object for the web service (stored in property), all other its methods should use this object (so, all other transactions are nested within the ‘global’ transaction), another method say, RollbackGlobalTran should rollback this ‘global’ transaction.
    That being said, it is a workaround and it might cause some unexpected side-effects (for instance, an error in the method will make the ‘global’ transaction uncommitable, so you will have to restart it to avoid further errors).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I realize this question has been answered before but couldn't find an answer that
Well, I'm sure this question has been asked before but I'm yet to find
I realise that this question has probably been asked to death, but none of
I realise this question has been asked before, but after going through the previously
Now, I realize that this question has been answered before, but I just can't
I realize that this question has been asked many times, but I've yet to
I realize that this type of question has been asked several times before but
I realize that this question has been asked 100times but none that I have
While I realize that this question has been asked once or twice ago but
I realise this question has been asked before however the previous answers have gotten

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.