I want to filter based on Enum values and Is there any way I can pass "IN" query and array of values to be filter?
Like in SQL we have select * from MyTable where Position in (1,2,4)
One way I know is to prepare the outer Filter object with "OR" and then provide a nested Filter with every 1,2,4 value but Is there any way I can directly filter?