Fop icon indicating copy to clipboard operation
Fop copied to clipboard

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

Open standuptall opened this issue 3 years ago • 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!

standuptall avatar Mar 08 '21 09:03 standuptall

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.

arslanaybars avatar Mar 08 '21 09:03 arslanaybars

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

ith-lmsandoval avatar Jul 07 '21 16:07 ith-lmsandoval