Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given a set of entity ids, how can you efficiently delete the entities to which to ids represent, without first selecting the entity?

Here is some code, I am using now, but EF profiler is complaining at me for running N+1 queries:

    var ids = GetSelectedIds();

    foreach (var id in ids)
        db.Workshops.DeleteObject(db.Workshops.Single(x => x.Id == id));

    db.SaveChanges();
    BindWorkshops();
share|improve this question

1 Answer

up vote 1 down vote accepted

This helped EF profiler to stop complaining about N+1, but is there a better way?

var ids = GetSelectedIds();

foreach (var id in ids)
{
    var ws = new Workshop { Id = id };
    db.Workshops.Attach(ws);
    db.Workshops.DeleteObject(ws);
}

db.SaveChanges();
BindWorkshops();
share|improve this answer
That's the most efficient way without dropping down to native SQL. – Craig Stuntz Oct 11 '10 at 20:24

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.