Tagged Questions

2
votes
1answer
56 views

Entity Framework and Object Context lifetime in ASP.NET MVC

Hi there I'm using Entity Framework in my project, and I have the problem that, once I pass my entities to a View (keep in mind that these entities have lazy-initialized objects a …
2
votes
2answers
94 views

How can I automatically set a DateUpdated column using the Entity Framework?

I have a bunch of tables that have DateUpdated columns. How can I have those fields automatically set to DateTime.Now when the objects are persisted back to the data store when Sa …
2
votes
4answers
210 views

Reuseable ObjectContext or new ObjectContext for each set of operations?

I'm new to the Entities Framework, and am just starting to play around with it in my free time. One of the major questions I have is regarding how to handle ObjectContexts. Which …
1
vote
1answer
56 views

Best way to keep ObservableCollection and ObjectContext in sync?

Hi, I have window with a listbox bound to an ObservableCollection of People (a set of entity framework objects that I retrieve in response to a users query: a search box), i then …
0
votes
1answer
45 views

ArgumentException when creating instance of object that inherits from ObjectContext

I'm loosely following an excellent series of blog posts by Kazi Manzur Rashid as a learning exercise for learning how to implement some new (for me at least) design patterns, but I …
0
votes
3answers
73 views

EF: load references after the context was disposed?

Hello everybody. I'm struggling with the ADO.NET Entity Framework. This is my ER-diagram: --------------------- ----------------- --------------- | GrandParentEntit …
0
votes
1answer
93 views

Asynchronous ObjectContext.SaveChanges() ?

Hi all! I want the SaveChanges of the ObjectContext (Win apps) to SaveChanges asynchronously, will show a marquee (or controllable?) progress bar (this I can easily implement) for …
0
votes
1answer
227 views

Need help with ADO.NET Entity Framework UpdateException.

I have in my Database a Contact table and a Phone table, in the phone table there is column "ContactId" with a key that references the phone to the contact. In the key options in …
0
votes
2answers
354 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 …