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

前端 未结 2 1651
伪装坚强ぢ
伪装坚强ぢ 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条回答
  •  旧时难觅i
    2021-01-15 17:21

    NHibernate can:

    • Send multiple updates/inserts/deletes at once
    • Load multiple proxies of a type at once
    • Load multiple collections of a type at once
    • Execute object oriented DML statements
    • Manually group queries in a single roundtrip (multiqueries, futures)

    EF can:

    • None of the above

提交回复
热议问题