PreviousNext

Optimize database traffic with future results in NHibernate

by bill-s, 2020-03-30T18:59:47.206Z

One nice feature that NHibernate has is future results. It is technically a capability to put queries on hold until data is actually asked. When data is asked from one delayed query then all queries are sent to database server as one batch and results are read also as one batch of multiple result sets. This blog post explains how to use future results with NHibernate.

Read More