Search code examples
c#nhibernateormbatching

How NHibernate implement the batching operation?


What is the solution of NHibernate for batching operations?


Solution

  • NHibernate is open source. You can download source codes and check the whole implementation.

    • For batching insert / update / delete commands start with AbstractBatcher class
    • For batching selects start with FutureBatch class