I have such field
/**
* @ORM\ManyToOne(targetEntity="Town")
**/
protected $town;
and Admin class with such method
protected function configureDatagridFilters(DatagridMapper $datagridMapper)
{
$datagridMapper
...
->add('town', null, array('label' => 'Town'), null, array('expanded' => true, 'multiple' => true))
;
}
It gives me such filter:
And my question is: can i set custom sql\dql for Town entity retrieving? For example, select only Towns with id IN (1, 2)?