RulesEngine
RulesEngine copied to clipboard
Rule expressions are case insensitive
How to achieve case sensitive string comparison in rule expression. Example, object1.Name == "SAM" and object1.Name == "sam" should be treated differently for my scenario. Appreciate any suggestions.
Can you share the version of RulesEngine you are using ?
Also string.Equals(object1.Name,"SAM") should be case sensitive. Let me know if this works.
Thanks for your response. I use RulesEngine 4.0.0. I tried with the way you suggested. This also behaves as case insensitive.