Entity Framework LINQ contains not case insensitive .23 May 2017
Read moreIs LINQ any case sensitive?
LINQ has no concept of case sensitivity , it only cares about boolean evaluation. So if you want to ignore case, you should do something like: query = query.
Read more