Tagged Questions
The objectstatemanager tag has no wiki summary.
9
votes
3answers
11k views
Unable to attach a detached entity: “An object with the same key already exists in the ObjectStateManager”
I am trying to attach an entity to the ObjectContext.
When I do so, the following InvalidOperationException is thrown:
An object with the same key already exists in the ObjectStateManager.
The ...
4
votes
1answer
700 views
Problem with UPDATE Operation On Entity Framework 4 (Pure POCOs)
I have an Entity Framework 4.0 model implemented with pure POCO's (no code generation, no self-tracking entities, just plain old CLR objects).
Now, here is some code i have in my UI to perform an ...
4
votes
3answers
4k views
ObjectContext.Refresh()?
How to update ALL the dirty entities from the data store, and reset their changed values to the original store value?
The method ObjectContext.Refresh requires as a parameter the entities to be ...
1
vote
1answer
33 views
Why do I get referenced entities added to context instead of attached, unchanged?
I have attached entities to a context with EntityState.Unchanged which will be referenced by a new entity I add later via DbContext<T>.Add(). The Add() adds the entity, but it also adds the ...
1
vote
1answer
517 views
EntityDataSource Null Update Pameters not getting marked Modified
I am using an EntityDataSource with a FormView on VB.NET application. The FormView contains an AjaxControlToolKit TabContains with multiple tabs. Due to the fact that each tab is a naming container, ...
0
votes
0answers
31 views
Delete record from “Details” DataGridView all the way to DB through EF4
I'm using EF4 on WinForms to populate a Master-Details DataGridViews. All work fine apart from deleting a record from the 'Details' DataGridView which works on the GUI but gives the FK famous error ...
0
votes
1answer
144 views
Why does Entity Framework detect changes on properties which were modified but reset?
If I modify a property of a POCO Entity, but reset it the EntityFramework still says that there are changes.
Property "Name": Value "Test" (original value)
-> Value "Test123" (value ...
0
votes
1answer
109 views
ObjectStateManager and Detached entity state
I'm using Entity Framework and some parts of its functionality are still unclear for me. The main things that are hard to understand are:
SubmitChanges process;
Order of invoking ...
0
votes
1answer
480 views
MVC3: Repository Updates and ObjectStateManager
I have an Update method in my repository which I'm using to update articles on my project. I was initially using this method only to carry out admin edits for articles. It handles that correctly, ...
0
votes
1answer
616 views
Entity Framework Code First DBContext ObjectStateManager Error
I am getting an Error "An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key."
public class TestObject
{
...
0
votes
3answers
334 views
How do I foreach through my dbcontext entities in EF 4.1?
I'm using ASP.NET Entity Framework 4.1 MVC 3 (C#)
I want to foreach through all the entities in my DbContext. I need to be able to dynamically refer to my entities in order to make dynamic views.
I ...
0
votes
1answer
453 views
enforcing ObjectStateManager entry deletion on page leave
I have a edited RESTful wizard based upon Shoulders of Giants | A RESTful Wizard Using ASP.Net MVC… Perhaps? . This wizard has a CANCEL button which, when pressed, fires the code below.
// If the ...
0
votes
1answer
1k views
When querying with 'Include', does the EF checks if objects already exist in object state manager?
Should I avoid using Include in queries, or I can rely on the EDM that when it creates the query it excludes from the query items that already exist in the OSM?