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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:36:41+00:00 2026-05-16T14:36:41+00:00

I am implementing an ObservableCollection to manage my EF entities. When i want to

  • 0

I am implementing an ObservableCollection to manage my EF entities. When i want to edit some entity, i create a clone of the entity and i open it up inside a popup window. When the user finishes to edit the cloned entity, i proceed to detach the original entity and then attach the new (cloned and edited) entity.

No exception occurs, but no update occurs to the db.

Here is the method that performs the update. It is an override of the ObservableCollection SetItem method :

protected override void SetItem(int index, T item)
    {
        T oldItem = Items.ElementAt(index);
        base.SetItem(index, item);

        try
        {
            ContextManager.CurrentObjectContext.Detach(oldItem);
            ContextManager.CurrentObjectContext.Attach((IEntityWithKey)item);
            ContextManager.CurrentObjectContext.SaveChanges();

        }
        catch (Exception err)
        {
            base.SetItem(index, oldItem);
            MessageBox.Show(err.Message);
        }
    }

Will greatly appriciate any help…

Thanks in advance,
Oran

  • 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-16T14:36:42+00:00Added an answer on May 16, 2026 at 2:36 pm

    Your cloned entity does not track changes so when you attach it, it is still in unchanged state. Try to add this line after attaching:

    ContextManager.CurrentObjectContext.ObjectStateManager.ChangeObjectState(item, EntityState.Modified);
    

    You can also try to use this one instead:

    ContextManager.CurrentObjectContext.DetectChanges(item);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Implementing the very first scala example I ran into some problems probably tipical for
I am implementing a autocomplete control. Every time the user types a new character
I have four entity Customer, product, order and order details. On my WPF window
I'm implementing a C++/CLI class library that does some low-level device-related stuff and exposes
I am implementing an eventhandler for ObservableCollection of Product. I have a NotifyCollectionChangedEventArgs e.
I have reason to wrap an instance of ObservableCollection<T> in another type. I'm implementing
I'm not very familiar with ObservableCollection but implementing it seems to provide me with
Implementing centering feature for image downloads - Pop Up Window I posted here asking
I have a class ShipmentsCollection that inherits ObservableCollection which contains shipment objects (entities). This
I just want to understand the following scenario. Where I am implementing a <TabControl>

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.