public function readAction()
{
$id = $this->getRequest()->getParam('id');
$clients = new Admin_Model_DbTable_Clients();
$this->view->client = $clients->find($id)->current();
}
And display in the view :
echo $this->client->getUser()->name;
Is this broking MVC structure or is this a good way to display
relations in view ?