-
-
Notifications
You must be signed in to change notification settings - Fork 228
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
Parameterized SQL doesn't work for Contains, StartsWith, and EndsWith #247
Comments
A preview NuGet is released: 1.0.10-ci-1959 ; can you test this? See https://github.com/StefH/System.Linq.Dynamic.Core/wiki/MyGet-preview-versions for details. |
Hello @BradleyUffner ; can you do some tests please? |
I'll test it as soon as I get out of the meeting I'm in. |
@BradleyUffner Did you have time to verify ? |
I'm so sorry, The last few days have been really chaotic, and it keeps slipping my mind. I'll do my best to test this tomorrow. |
I just finished testing, it seems to be fixed! Thanks! Sorry for the delay in testing. |
Thanks for testing; I'll merge code to master. I keep you informed here when a new NuGet is released. |
Official NuGet 1.0.11 is uploaded. |
If I use
.Where(config, "ActivityCode==@0", "AB")
it works as expected, generating the parameterized value, but.Where(config, "ActivityCode.Contains(@0)", "A")
still inlines the value.The text was updated successfully, but these errors were encountered: