-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
White space first of =* operator #242
Comments
Hi @MrSEKIRO, |
For my case it just return the result if there is no spaces and trimming is not needed. I should wait for next version. |
I just tested the leading space behavior and noticed you can escape it if needed. so another workaround would be this:
But I'm also considering adding a new configuration to disable the AutoTrim feature. what do you think? |
That may work but in my case I am doing some translations to Gridify filters and it won't fit well. |
If you mean something like this |
Version
2.14.2
Details
Hi,
I am using GridifyAsync for finding the records which some field contains some string starting with whitespace, but it ignores the first white space of that string.
e.g. I want to look for " Something" on column error:
error Like =* Something
the sql would be like:
but it search for all strings in error column which has "Something".
Steps to reproduce
make some table with string column
search using below expression:
error Like =* Something
The text was updated successfully, but these errors were encountered: