Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm deleting several items from a table using Entity Framework. There isn't a foreign key / parent object so I can't handle this with OnDeleteCascade.

Right now I'm doing this:

var widgets = context.Widgets
    .Where(w => w.WidgetId == widgetId);

foreach (Widget widget in widgets)
{
    context.Widgets.DeleteObject(widget);
}
context.SaveChanges();

It works but the foreach bugs me. I'm using EF4 but I don't want to execute SQL. I just want to make sure I'm not missing anything - this is as good as it gets, right? I can abstract it with an extension method or helper, but somewhere we're still going to be doing a foreach, right?

share|improve this question

7 Answers

up vote 11 down vote accepted

If you don't want to execute SQL directly calling DeleteObject in a loop is the best you can do today.

However you can execute SQL and still make it completely general purpose via an extension method, using the approach I describe here.

Although that answer was for 3.5. For 4.0 I would probably use the new ExecuteStoreCommand API under the hood, instead of dropping down to the StoreConnection.

share|improve this answer
ExecuteStoreCommand is not a proper way.DeleteAllSubmit is working in linq to sql but not in entity framework. I want same option in entity framework. – Hiral Jan 3 at 10:38

this is as good as it gets, right? I can abstract it with an extension method or helper, but somewhere we're still going to be doing a foreach, right?

Well, yes, except you can make it into a two-liner:

context.Widgets.Where(w => w.WidgetId == widgetId)
               .ToList().ForEach(context.Widgets.DeleteObject);
context.SaveChanges();
share|improve this answer
7  
+1, even though that's cheating ;) – Thomas Levesque Mar 25 '10 at 23:40
7  
You are doing a ToList() which defeats the purpose. How is that any different from the original solution? – sylon May 31 '11 at 4:52
1  
Worked perfect! -- – David K Egghead Jan 26 '12 at 4:20
5  
Not cheating. Doing it like a man. +1 – Sinaesthetic Jun 18 '12 at 20:39
Perfecto solution. Thank you! – vfportero Oct 3 '12 at 13:54
show 2 more comments
using (var context = new DatabaseEntities())
{
    context.ExecuteStoreCommand("DELETE FROM YOURTABLE WHERE CustomerID = {0}", customerId);
}
share|improve this answer

Unfortunately, the Entity Framework people just don't seem to have enough experience with business applications to understand the need for set-oriented updates and deletes. In fact, none of the people working on ORMs for any company seem to have a clue.

Passing SQL strings to an API defeats the entire purpose of having a strongly typed approach. It's not the right answer.

Wouldn't it be great if we could do something like this:

// give all hourly employees a 3.5% cost of living increase

from e in context.Employees where e.EmployeeType == "Hourly" update { e.Wage = e.Wage * 1.035 };

// delete all orders that were shipped

from e in context.Orders where e.Shipped == true delete;
share|improve this answer

For EF 4.1,

var objectContext = (myEntities as IObjectContextAdapter).ObjectContext;
objectContext.ExecuteStoreCommand("delete from [myTable];");
share|improve this answer

I know it's quite late but in case someone need a simple solution, the cool thing is you can also add the where clause with it:

        public static void DeleteWhere<T>(this DbContext db, Expression<Func<T, bool>> filter) where T : class
        {
            string selectSql = db.Set<T>().Where(filter).ToString();
            string fromWhere = selectSql.Substring(selectSql.IndexOf("FROM"));
            string deleteSql = "DELETE [Extent1] " + fromWhere;
            db.Database.ExecuteSqlCommand(deleteSql);
        }

Note: just tested with MSSQL2008.

share|improve this answer

This is one of my favourite bits of code. So useful!

Usage:

IEnumerable<MyEntity> myEntities = db.MyEntities.Where(e=>e.Date > DateTime.Today())

db.MyEntities.RemoveMany(myEntities);
db.SaveChanges();

The extension function:

public static class DBSetExtension
{
    public static void RemoveMany<TEntity>(this DbSet<TEntity> thisDbSet, IEnumerable<TEntity> entities) where TEntity : class
    {
        for (int i = entities.Count() - 1; i >= 0; i--)
        {
            if (entities.ElementAt(i) != null)
                thisDbSet.Remove(entities.ElementAt(i));
        }
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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