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);
// ...
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 ...
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
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 ...
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
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
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 ...