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.
|
2
|
|
|
|
|
|
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 Alex |
||
|
|
|
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. |
||
|
|
