Tagged Questions
The object-context tag has no wiki summary.
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);
// ...
4
votes
1answer
1k views
In EntityFramework how do you reload entities in a Many to Many relationship?
First off I'm using .Net 3.5 SP1. I have a few entities related as follows.
An Engineer has many Appointments
An Appointment has many Engineers
A Timeslot has many Appointments
I'm providing ...
4
votes
1answer
995 views
Entity Framework and Object Context lifetime in ASP.NET MVC
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 along the lines of: ...
3
votes
2answers
4k views
Entity Framework Object Context in ASP.NET Session object?
We have a multi-layered Asp.NET Web Forms application. The data layer has a class called DataAccess which impements IDisposable and has an instance of our Entity Framework Object Context as a private ...
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
768 views
Global Javascript Event Handling Object Context
I have the following problem in event handlers in Javascript. I've got an object that has a mousemove event handler like so.
function MyObject(){ }
functino MyObject.prototype = {
...
2
votes
1answer
716 views
Best way to keep ObservableCollection and ObjectContext in sync?
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 have functions such as ...
2
votes
2answers
378 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 SaveChanges() is ...
2
votes
4answers
4k 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 is generally ...
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. ...
1
vote
0answers
204 views
How to handle Object Context with Entity framework and repository pattern?
I’m using Entity Framework 4.0 (VS 2010, VB.NET) in my application and I trying to do this the right way.
My code looks like this:
Public Interface ICustomerRepository
Function GetAll(ByVal ...
1
vote
1answer
187 views
How to properly dispose the ObjectContext in a Repository and Unit of Work pattern
I'm using Entity Framework 4 and I have created a UnitOfWork class that creates my Context and exposes that through a public property as a IContext interface.
The Context class inherits from ...
1
vote
3answers
541 views
EF: load references after the context was disposed?
I'm struggling with the ADO.NET Entity Framework. This is my ER-diagram:
--------------------- ----------------- ---------------
| GrandParentEntity |<-------| ParentEntity ...
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
1answer
128 views
TransactionScope with Object context on dependant objects
I'm working on a MVC3 application and i'm using the Entity Framework linked to an Oracle database (11G R2).
I'm encountering an issue when i'm trying to use a single object context inside a ...
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
0answers
70 views
C#: ObjectContext - without EntityFramework - possible?
i have a bit of an understanding problem:
I'd like to do the following: I have an external API ( with tons of get / set methods, like "getOrder", "getOrderPosition", etc. ) and i want to build my own ...
0
votes
1answer
274 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
1answer
388 views
Entity Framework with ASP.NET MVC. Updating entity problem
I'm trying to update an entity and its related entities as well. For instance, I have a class Car with a property Category and I want to change its Category. So, I have the following methods in the ...
0
votes
1answer
128 views
ADO.net, Check if ObjectContext is writeable
I have an embedded database in an asp.net mvc project. If I try to write to the file, I sometimes get a write failed exception because the SQL Server can't write to the file. How can I check an ...
0
votes
3answers
487 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 ...
0
votes
1answer
849 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'm getting trouble ...
0
votes
1answer
1k views
Asynchronous ObjectContext.SaveChanges()?
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 the user while he is able to ...
0
votes
1answer
1k 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 the server I set its ...