What is the recommended practice to update or delete multiple entities in EntityFramework?

后端 未结 3 560
滥情空心
滥情空心 2021-01-17 07:29

In SQL one might sometimes write something like

DELETE FROM table WHERE column IS NULL

or

UPDATE table SET column1=valu         


        
3条回答
  •  死守一世寂寞
    2021-01-17 07:58

    EF doesn't have support for batch updates or deletes but you can simply do:

    db.Database.ExecuteSqlCommand("DELETE FROM ...", someParameter);
    

    Edit:

    People who really want to stick with LINQ queries sometimes use workaround where they first create select SQL query from LINQ query:

    string query = db.Table.Where(row => row.Column == null).ToString();
    

    and after that find the first occurrence of FROM and replace the beginning of the query with DELETE and execute result with ExecuteSqlCommand. The problem with this approach is that it works only in basic scenarios. It will not work with entity splitting or some inheritance mapping where you need to delete two or more records per entity.

提交回复
热议问题