Make linq case insensitive
Make linq case insensitive23 minutes ago|LINK
Hello
I am trying to use the dynamic LINQ expression builder from https://gist.github.com/afreeland/6733381
However the I am not sure how to make the "equals" operation case insensitive.
ase GridHelper.Operator.Equals:
return Expression.Equal(member, constant);
I want the above to be case insensitive either convert both to lower case or upper case, does not matter.
Pls. any helpful pointers appreciated.
Thanks