// Method chaining
$result = Model_Example::query()->limit(20)->offset(40)->get();
// Query with array
$result = Model_Example::find('all', array('limit' => 20, 'offset' => 40));
		It looks like you're new here. If you want to get involved, click one of these buttons!