Possible Duplicate:
Ignoring accented letters in string comparison
I have a search textbox that searches the given text in all the news from the database. So I have this:
List<NewsTranslation> newsTranslations = GetByLanguage(GlobalBL.CultureLanguage);
return newsTranslations.Where(
            e =>
            e.NewsContent.Contains(searchText) || e.NewsDescription.Contains(searchText) ||
            e.NewsTitle.Contains(searchText)).ToList();
which works fine, but I would need it not to consider case or accents on letters.
Thanks
 
     
    