turkraft / springfilter

Dynamically filter JPA entities and Mongo collections with a user-friendly query syntax. Seamless integration with Spring APIs. Star to support the project! ⭐️
https://turkraft.com/springfilter
216 stars 35 forks source link

Case insensitive equals search #358

Open seequick opened 8 months ago

seequick commented 8 months ago

Hi there, We are using Postgres DB We have equals operator for our strings (simple varchars) name ~~ 'DCWQ18' The main problem it's the same as ILIKE operator and returns multiple results. So something like DCWQ18, DCWQ189, DCWQ180, DCWQ181, dcwq1800 will be returned (as collection)

I'm looking for any direct case insensitive equal operation for unique string field. name : 'DCWQ18' Any ideas how to implement this quickly?

P.S. Special thanks for your plugin, it’s just an unrealistic thrill for our tasks. Respect.