I am using a Propel parameter converter in one of my controller: (Symfony 2.4.2 + Propel 1.7)
* @ParamConverter("center", converter="propel", class="MyCompany\Bundle\CoreBundle\Model\Center")
It's work well, but I'd like to add additional filters, typically a on a field isVisible
(but the filter may be more complex), it is possible? In fact, what I'd like is to use a custom query function of my model and not the basic findPk()
function.