arslanaybars/Fop

Is there a way to filter a collection like the sql operation " IN ()"

standuptall opened this issue ยท 2 comments

As the subject says, Is there a way to filter a collection like I would do in sql:

SELECT *
FROM Students
WHERE ID IN (1,2,3)

Thank you!

Hello @standuptall ๐Ÿ‘‹,

For now fop doesn't support IN keyword.

We may add this feature. ๐Ÿ‘ I am adding this to my backlog. I will do it soon as possible.

I think it could be done just using a set of filters and the or logic operator.
Something like:

?Filter=Id==1;Id==2;Id==3;or