I use the Propel parameter converter in one of my controllers: ( Symfony 2.4.2 + Propel 1.7 )
* @ParamConverter("center", converter="propel", class="MyCompany\Bundle\CoreBundle\Model\Center")
It works well, but I would like to add additional filters, usually in the field isVisible(but the filter may be more complex), is this possible? In fact, I would like to use the custom query function of my model, not the base function findPk().
source
share