I\'ve tried using Future feature with Oracle but NHibernate does not support it.
I\'ve read some about Batch Fetching feature: http://docs.huihoo.com/hibernate/nhibe
To give you the answer how to use batching with fluent:
1) on the colleciton
HasMany<MyEntity>(x => x.Entities) .BatchSize(100);
2) on a class level
public MyEntityMap() { Id(x => x.... ... BatchSize(100);
This corresponds with the 19.1.5. Using batch fetching