Hi,
I need to be able to apply filter to fullTextSearch query injecting a collection as parameter. Basically something like "IN (1,2,3)" clause in SQL. Is possible to achieve that with a filter?
In case that can't be injected a collection as parameter, is possible to to enable multiple times same filter with different parameter?
Code:
query.enableFullTextFilter( "objectId" ).setParameter( "id", 1);
query.enableFullTextFilter( "objectId" ).setParameter( "id", 2);
I'm supposing that filters are the natural way to make this restriction, what more options I have to apply collection restriction?