Hi,
i read a postgis table with the feature reader. As a WHERE clause i want to filter on a certain criteria, say:
name_community IN ('Comm1','Comm2','Comm3')
I would like to allow multiple selection. Therfore I have choosen the type of parameter "choice" and a list with multiple selection. The name of the parameter is "_community".
Now , I thought:
name_community IN (%(_community))
However, this does not work. Any support would be appreciated.