Reputation: 89
I have a entity saved in the DB with the property "Name" using value "Test".
I want to know, how to get this entity with a query with the value being lowercase.
This is the query to execute: query = "Name == test"
Upvotes: 0
Views: 49
Reputation: 2887
You'll need to add a new indexed property, e.g. name_lowercase that only has the altered (lowercased) values.
Upvotes: 1