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 6644553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:10:51+00:00 2026-05-26T00:10:51+00:00

I need to switch data context for some records. So basically I have db

  • 0

I need to switch data context for some records. So basically I have db context A and B, I fetch records using A, then I switch to B, alter records, and save them.

When I call Attach for B, I get exception that records are using by multiple data context, when I add Detach for A, I get exception, that records are not attached to A.

So how can I switch the data context?

Example

db_creator is creator of db context. Here I fetch the data (corrected version):

using (var db = db_creator.Create())
{
  var coll = db.Mailing.Where(it => !it.mail_IsSent).ToList(); // (*)
  coll.ForEach(it => db.Detach(it));
  return coll;
}

(*) the mistake was caused by refactoring this piece, I created extra data context, and then later I tried to detach records from another one.

Now I would like to switch data context to new one, do some computation and modifications and save the records. coll is List of the records:

using (var db = db_creator.Create())
{
  coll.ForEach(it => db.Mailing.Attach(it));
  ...
  db.SaveChanges();
}
  • 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-26T00:10:52+00:00Added an answer on May 26, 2026 at 12:10 am

    I recommend change your design and have ONE context at a time. (Based on your project type this could vary. Usually in web apps it’s one context per http request.)

    For example in a web application, you can do this like below:

    protected MyContext Context
    {
        get
        {
            var context = HttpContext.Current.Items["MyContext"];
            if (context == null)
            {
                context = new MyContext();
                HttpContext.Current.Items.Add("MyContext", context);
            }
            return context as MyContext;
        }
    }  
    

    And dispose it in your Application_EndRequest:

    app.EndRequest += (sender, args) =>
    {
        HttpContext.Current.Items.Remove("MyContext");
    }
    

    If you have multiple project types, then consider using an Ioc.
    But if you still want to use two contexts, you can do as below(myEntity is your object you want to detach/attach):

    if (context1.Entry(myEntity).State != EntityState.Detached);
    {
        ((IObjectContextAdapter)context1).ObjectContext.Detach(myEntity);
    }
    context2.MyEntities.Attach(myEntity);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We need to identify and then process switch/case statements in code based on some
for e.g from command prompt I need to launch the exe with some switch
Supposed I have my data context MyDC and a list of objects called MyObject
I have a page that displays some data. The source of the data is
I need to switch among 3 different environments when developing my web app -
I need to switch every control of a particular type on a form to
For various reasons (code review mostly) I need to switch from current development branch
I need a conditional compilation switch that knows if I am compiling for the
I need to change the connection speed of a port on a switch via
I need to declare the query variable outside the switch statement that way I

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.