-
Notifications
You must be signed in to change notification settings - Fork 27
Where filter key sensitive #27
Comments
I have changed the QueryDesigner project. ... case WhereFilterType.Contains: Solution 2 : - probably a better approach as you don't transform the strings. I have created new WhereFilterTypes: private static readonly MethodInfo EqualsMethod = StringType.GetRuntimeMethod("Equals", new[] { typeof(string), typeof(string), typeof(StringComparison) }); case WhereFilterType.NotEqualIgnoreCase: case WhereFilterType.StartsWithIgnoreCase: case WhereFilterType.NotStartsWithIgnoreCase: case WhereFilterType.ContainsIgnoreCase: case WhereFilterType.NotContainsIgnoreCase: case WhereFilterType.EndsWithIgnoreCase: case WhereFilterType.NotEndsWithIgnoreCase: |
In where filters seem is key sensitive.
How resolve this ?
The text was updated successfully, but these errors were encountered: