Tagged Questions
1
vote
3answers
540 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
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
486 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
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 ...