the offset is applied on the outer query instead of on the inner query. Fluent generates SQL code such as: ``` SELECT COUNT(*) FROM ( SELECT * FROM `table` ) `data` LIMIT 25 OFFSET 25 ``` (with MySqliDriver)