Find syntax for exact match for filters
mblarsen opened this issue · 1 comments
mblarsen commented
E.g:
filters[name!]=joe
! mark after keyfilters[Name]=joe
capital key nameexactFilters[name]=joe
Different arrayfilters[name]=joe*' Be exact by default and require
*` to match with LIKE
mblarsen commented
§1 is my current favourite a close second is §2.
§3 requires too much duplication of code that has to pass through all implementations.
§4 this is the inverted solution. My gut tells me that most of the time filtering is done as a search and not a perfect match.
§2 can be troublesome as some string-handling is being done along the way, which would require to be sensitive to the TitleCase.