Is it possible to have model relationships for grandchild relationships?
I know it is possible with children, eg
$model->aModel::model()->with("parent.child")->findAll(....);
(I know I can use CDbCommand, but I would like it in a model if possible - will save a lot of coding.)
Cheers