vote up 3 vote down star

Hi, Does anyone know how to delete an object and all of it's related entities inside of EF without manually traversing the object graph and deleting each one?

For example, I've got SalesOrder and SalesOrderDetails with a 1:N relationship between them. When I delete a SalesOrder, I want all SalesOrderDetails to be deleted automatically. Is this possible in EF?

Thanks, Roy

flag

64% accept rate

1 Answer

vote up 3 vote down check

You should not be doing this in the Entity Framework. All popular relational databases support ON CASCADE DELETE on foreign keys which is a lot more efficient as well. I suggest you just go with that.

link|flag
1  
Yeap. If you have cascade delete on your relationships in database, and you bring that into an EF model, the EF will in fact delete dependent entities in memory to attempt to keep the in memory object graph in sync with the database. But you shouldn't rely on EF deleting related all related objects that is the job of the database. – Alex James Jun 2 at 3:43
Thanks Alex, I was worried that CASCADE DELETE would mess up the in memory state but if EF is keeping it up to date then this works! – LPCRoy Jun 3 at 0:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.