我正在获取具有多对多关系的数据,并且我想定义一个自定义方法。是否有可能(以及如何)使用类似的东西:
$hotel = $entityManager->getRepository('Hotels')->findOneById(1);
$types = $hotel->getTypes(); //$types is instance of **Doctrine\ORM\PersistentCollection**
$types->myCustomFunction(); //do something