pdevito3 / QueryKit

🎛️ QueryKit is a .NET library that makes it easier to query your data by providing a fluent and intuitive syntax for filtering and sorting.
Apache License 2.0
147 stars 13 forks source link

Add "Not In" Comparison operator #17

Closed AlexMKotcz closed 7 months ago

AlexMKotcz commented 7 months ago

Currently, we have the "In" comparison operator:

image

Could we get the "Not In" operator as well?

Use case: Do a database filter where items IDs are not in a list of items. Example: """Id !^^ [23, 21, 20]"""

pdevito3 commented 7 months ago

Yeah, this slipped through the cracks. Good call. New release just pushed that includes it.