I am using LINQ to search through one of my Entity Framework tables and find a \"group\" based on the name. The name is a string and appears to be Unicode (says it is in the
I like TravyGuy's answer from a technical perspective. For a more direct, practical answer, try using:
string.Compare(string A, string B, StringComparison.OrdinalIgnoreCase) == 0