Facing one issue while doing lambda query using OData. For example below are the query which I am doing:
Value that is stored in Database is Hubbardston
Scenario 1:
http://localhost:32339/Enquiry?$filter=relatedParty/any(r: r/religion eq 'Hubbardston')
Result: working fine
Scenario 2:
http://localhost:32339/Enquiry?$filter=relatedParty/any(r: r/religion eq 'hubbardston')
Result: Not working
So basically it is behaving like case sensitive, how can we make it case insensitive?