Is there any way to bulk-delete a bunch of objects matching a given query in LINQ or LINQ-to-Entities? The only references that I can find are outdated, and it seems silly to iterate over and manually delete all objects I wish to remove.
|
The question is an old one (from before EF5 existed). For anyone who's using EF5, EntityFramework.Extended does this in a snap. |
|||||
|
|
|
A while back I wrote a 4 part blog series (Parts 1, 2, 3 and 4) covering doing bulk updates (with one command) in the Entity Framework. While the focus of that series was update, you could definitely use the principles involved to do delete. So you should be able to write something like this:
All you need to do is implement the Delete() extension method. See the post series for hints on how... Hope this helps |
|||||||||||||||
|
|
|||||||
|
|
The Answers I'm seeing here are Linq to Sql DeleteAllOnSubmit is part of System.Data.Linq and ITable which is Linq to Sql This can't be done with Entity Framework. Having said all of that I don't have a solution yet but will post back when I do |
|||
|
|
|
I know of DeleteAllOnSubmit method of any data context which will delete all the records in query. There must be some optimization underlying since a lot of objects are being deleted. I am not sure though. |
|||||
|
|
I'm not sure how efficient it would be, but you could try something like this:
|
|||||||
|
|
YOu could write a stored proc that does the delete and call it from LINQ. A set-based delete is likely faster overall but if it affects too many records you could cause locking issues and you might need a hybrid of looping through sets of records (maybe 2000 at a time, size depends on your database design but 2000 is a starting place if you find the set-based delte takes so long it is affecting other use of the table) to do the delete. |
|||
|
|
|
Deleting data via the Entity Framework relies on using the DeleteObject method. You can call this method on the EntityCollection for the entity class you want to delete or on the derived ObjectContext. Here is a simple example:
|
||||
|
|
protected by Community♦ Nov 7 '11 at 16:48
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
