Does anyone know how to delete many-to-many relationship in ADO.NET Entity Framework without having to load all of the data? In my case I have an entity Topic that has a property Subscriptions and I need to remove a single subscription. The code myTopic.Subscriptions.Remove(...) works but I need to load all subscriptions first (e.g. myTopic.Subscriptions.Load()) and I don't want to do that because there are lots (and I mean lots) of subscriptions.
feedback
|
|
You can Attach() a subscription then Remove() it - note, we're not using Add() here, just Attach, so effectively we're telling EF that we know the object is attached in the store, and asking it to behave as if that were true.
This whole exchange, including getting the original topic from the database sends these 3 queries to the database:
so it's not pulling all the subscriptions at any point. | |||||
feedback
|
|
One way would be to have a stored proc that will delete your child records directly on the DB and include it in your EF model; then just call it from your DataContext. | ||||
|
feedback
|
|
Here is my example ...where i know the foreign keys and i don't want to do a db round trip. Given:
| ||||
|
feedback
|