Using the Where
filter with Contacts
, is it possible to make the term Name.Contains("Peter")
not case sensitive?
Asked
Active
Viewed 261 times
1 Answers
3
You can use ToLower()
to achieve this - make your where clause something like:
Name.ToLower().Contains("peter")

rustyskates
- 856
- 4
- 10
-
1Took me a while, but I also found `ToLower()` - shame the API docs don't tell us more about the available methods. Thanks! – exception Feb 18 '20 at 00:13