By the way,
I overlooked a simple solution that works to some extend:
You can of course manually multiple preload parent beans:
(case: book->page->text)
$texts = R::find('text');
R::preload($texts,array('page'));
$beans = array();
foreach($texts as $t) $beans[] = $t->page;
R::preload($beans,array('book'));
cheers,
Gabor
On Saturday, November 10, 2012 1:02:46 PM UTC+1, gabor wrote:
> At the moment, no.
> But I'm working on it.
> If you need a simple list with columns from various tables I recommend to
> either use a view and then load beans from there, or to query manually.
> Cheers,
> Gabor
> On Friday, November 9, 2012 8:51:11 PM UTC+1, aniolekx wrote:
>> is there a way to preload all parents? (to the top parent)