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
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…