Can EF4 support batch updates?

前端 未结 3 714
一生所求
一生所求 2021-01-01 22:58

Does Entity Framework v4 support batch updates/inserts so rather than sending >1 command to a db, it can send >1 command to the DB in one go?

Thanks

3条回答
  •  别那么骄傲
    2021-01-01 23:27

    I don't believe that has changed. You have the options of:

    • Stored Procedures
    • Stuff like this article
    • Using T-Sql like in the answer of this question

提交回复
热议问题