For a moment i found following example:
$robots = Robots::find(array("limit" => 100));
Is it possible to define two values for limit, “from” and “offset”?
In Zend Framework it was possible with Db adapter function, that looked like this:
$db->select()->limit($from, $offset)
You could always use PHQL which supports the
OFFSETlike so (in a controller):