What is the开发者_如何学Python solution of NHibernate for batching operations?
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
精彩评论