At several points in our code, we might do something similar to the following:
$parentClass = ParentClasses::model()->findOneByPk($parentClassId);
...
$sessions = $parentClass->sessions;
foreach ($sessions as $session) {
// Do something with the parent class of the session, perhaps
// rendering it in a subview
$parentClass = $session->parentClass;
echo $parentClass->title;