phalcon/incubator

hope to add a single layer preload condition limit.

sowork opened this issue · 0 comments

e.g

$robots = Robot::with(
	[
		'Foo' => function (QueryBuilder $builder) {
			// Limit Bar
			$builder->limit(5)
                                     ->with('Bar');
		}
	]
);