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
query = query.Where(x => string.Equals(x.Name, Name, StringComparison.CurrentCultureIgnoreCase));