5

I have a tblA in sql:

id  int  (primary key)
fid  int 

data in tblA is:

1   1
2   1
3   2
4   2
5   3
6   3

i delete one record by following code:

DatabaseEntities obj = new DatabaseEntities();
int i = 2;
tblA t = obj.tblA.Where(x => x.fid == i).FirstOrDefault();
obj.DeleteObject(t);
obj.SaveChanges();

i delete multiple records by following code:

DatabaseEntities obj = new DatabaseEntities();
int i = 2;
while (obj.tblA.Where(x => x.fid == i).Count() != 0)
{
   tblA t = obj.tblA.Where(x => x.fid == i).FirstOrDefault();
   obj.DeleteObject(t);
   obj.SaveChanges();
}

Is there any solution for delete multiple records in linq to entity?

Samiey Mehdi
  • 9,184
  • 18
  • 49
  • 63

2 Answers2

12

You can do the following, which is technically still a loop.

obj.tblA.Where(x => x.fid == i).ToList().ForEach(obj.tblA.DeleteObject);
obj.SaveChanges();

The alternative is calling the SQL directly.

Marco
  • 22,856
  • 9
  • 75
  • 124
2

There is a extension provided at EntityFramework.Extended

to delete all object

//delete all users where FirstName matches
context.Users.Delete(u => u.FirstName == "firstname");

Additionally look into : How do I delete multiple rows in Entity Framework (without foreach)

Community
  • 1
  • 1
Parimal Raj
  • 20,189
  • 9
  • 73
  • 110