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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T23:45:59+00:00 2026-05-11T23:45:59+00:00

I’m trying to use: // this is a BreakHistory class from the ADO.NET Data

  • 0

I’m trying to use:

// this is a BreakHistory class from the ADO.NET Data Entity Model _entities
_entities.AddToBreakHistory(this);
_entities.SaveChanges();

and I’m getting “An entity object cannot be referenced by multiple instances of IEntityChangeTracker.” error

I’m thinking that my update code:

_entities.ApplyPropertyChanges(this.EntityKey.EntitySetName, this);
_entities.SaveChanges();

and I’m thinking I’ll probably get the same type of error.

Do I have to get the originalBreakHistory object as such?

var originalBreakHistory = (from bh in _entities.BreakHistorySet where bh.BreakHistoryID = id select bh).FirstOrDefault();

— Updated at 4:40PM same day
It seems that I may be having another problem that might be related.
I’m adding the Manager entity object to the current BreakHistory entity since they’re related and I’m getting this error:
“The relationship between the two objects cannot be defined because they are attached to different ObjectContext objects.”

Could that error be because I’m using the same entity model, but calling “new” on the entity objects and loading them from the DB??

Here’s some of my code:

protected void lstBreaks_ItemCommand(object source, RepeaterCommandEventArgs e)
{
    var bh = new BreakHistory().CurrentBreakRequest(int.Parse(e.CommandArgument.ToString())).CurrentManagerIs(GetManagerEntityByUserName());

    switch (e.CommandName)
    {
        case "Approve":
            bh.Approve();
            break;
        case "Deny":
            bh.Deny();
            break;
        case "Push":
            bh.Push();
            break;
    }

    bh.Save();

    LoadBreakList();
}

The code for example on the Approve – bh.Approve() looks like this:

public BreakHistory Approve()
{
    this.DateApproved = DateTime.Now;
    this.ManagerApprove = CurrentManager;

    return this;
}

A manager can approve, deny, or push a request along and so the manager is related to the BreakHistory via a ManagerID.

  • 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-11T23:45:59+00:00Added an answer on May 11, 2026 at 11:45 pm

    You shouldn’t have to use the new operator if you are retrieving an existing record. That may be what is hanging you up.

    Make sure you are using the same DataContext object for all of your updates. It is difficult to move objects from one DataContext to another for numerous reasons.

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

Sidebar

Related Questions

No related questions found

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.