Wow Marco,
thanks for this amazing answer. I will have the chance to try your code
after easter!

One question in advance:
Will I be able to use a self-refering category like


$contact = ....;
foreach ($contact->getCategories() as $category) {
    echo $category->getId();
    echo $category->getName();
}


or do I have to call


$contact = ....;
foreach ($contact->getCategories() as $category) {
    echo $category->getCategory()->getName();
    echo $category->getCategory()->getId();
}


?!

--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Deep-Association-Mapping-in-Doctrine-tp3465770p3465997.html
Sent from the Zend Framework mailing list archive at Nabble.com.

-- 
List: [email protected]
Info: http://framework.zend.com/archives
Unsubscribe: [email protected]


Reply via email to