How to make LINQ case sensitive and NOT case sensitive depending on the situation?
I\'m using sql server 2008 and Entity Framework 4.0.
I changed the COLLATI
Queryable.Contains has an overload taking an IEqualityComparer used for comparision. See msdn. If you supply a case insensitive comparer, this should work - I'm quite sure there is one in the framework already.
Queryable.Contains
IEqualityComparer