I need to get all the results where the text contains a particular word ignoring all accents.
Now I have the following:
filtered = result.Where(p => p.@string.ToString().ToUpper().Contains(word));
Or a simplified version:
filtered = result.ToUpper().Contains(word));
How can I make the "Contains" statement ignore the accents?
Thanks in advance