When I configure my application to use HiLo Id generation, I see one round-trip per row inserted in the database. All the documentation I've read has indicated that I should see far fewer round-trips.
My objects are all generally configured (fluently) as such:
Id(t=>t.Id).GeneratedBy.HiLo("MyObject_Identity","MaxId","1000");
Additionally my batch size is set to 75 on the connection.
I know I'm probably doing something relatively stupid.