Quote:
Note that, in the current implementation, only one collection role may be fetched in a query.
I found this in the doco ( 10.3 ) in the fetch join section. Does this mean I can't fetch multiple collections of the same object type like this?
Code:
from eg.Cat as cat
join cat.mate as mate
left join cat.kittens as kitten
or does it mean I can't have more than one parent object fetching it's collections in a single query like this?
Code:
from eg.Cat as cat, eg.Mouse as mouse
join cat.mate as cat_mate
join mouse.mate as mouse_mate
Or something else.
Cheers.
Myk.