Tagged Questions

4
votes
2answers
196 views

EF save to Context but not to Datasource

Having a EF Context and a Testenity I want to get the following test to work. TestEntity testEntity = new TestEntity() { Name = "Hello World" }; context.TestEntities.AddObject(testEntity); // ...
3
votes
2answers
3k views

How to refresh ObjectContext cache from db?

We are loading data from db: var somethings = Context.SomethingSet.ToList(); Then someone deletes or adds rows outside of context. Out context still has caches deleted object, because it doesn't ...
2
votes
2answers
2k views

Entity Framework: Is there a way to check if the context has an object?

Situation: Object in session from a past context can't be set as another object's parent since other object is in a new context. Say I have a User in session that I had retrieved from a context. ...
0
votes
1answer
54 views

ObjectContext and Caching Per Request - Getting ObjectDisposedException

I'm using an ObjectContext and storing it in HttpContext.Current.Items collection. I share the ObjectContext for a single request, but the framework also enables the ability to load a fresh, ...
0
votes
0answers
37 views

Entity Framework ObjectContext Does Nothing

I have a weird issue. A page that was just working not too long ago is breaking, and it has to do with the change management of EF. As you run through the application on our UAT, objects are marked ...
0
votes
1answer
271 views

Refresh ObjectContext or recreate it to reflect changes made to the database?

I have a web service that exposes operations to and from a database. I'm using Entity Framework 4 for the DAL. I'm wondering what would be the best way to handle operations to and from the database. ...
0
votes
3answers
484 views

How to delete an asociated object in Entity Framework without having access to the object context

Having two models, Site and Link, where a site has many links, how do I delete a link from inside a method of Site, which doesn't have access to the object context? I've tried something like: public ...