nhibernate : executing updates in batches

后端 未结 3 1981
别那么骄傲
别那么骄傲 2021-01-26 18:58

I am trying to do batch updates using NHibernate, but it is not doing batch updates, its doing individual writes for all the rows. I have to write around 10k rows to db.

3条回答
  •  北恋
    北恋 (楼主)
    2021-01-26 19:35

    nhibernate does not batch versioned entities that was the issue in my case.

    There is no way you can batch version entities, the only to do this is to make the entity non versioned.

提交回复
热议问题