What is the difference between nhibernate and entity framework in batching?

前端 未结 2 1629
伪装坚强ぢ
伪装坚强ぢ 2021-01-15 16:52

I want to select one of the above orm. What is the difference between nhibernate and entity framework in batching?

2条回答
  •  清酒与你
    2021-01-15 17:23

    The difference is that EF natively doesn't have any command batching so every update, insert or delete is executed in separate round trip to the database - but in my previous question are some links to workarounds. EF also doesn't have any alternative to NHibernate future queries (way to batch multiple queries to single database round trip).

提交回复
热议问题