In my DB I have some texts like this one: 'AVENUE GEORGES LEMAîTRE'. As you can see there is a ^ on the 'i' character.
Is it possible to perform a search with LINQ and ignoring this special character.
So I would like to search for 'AVENUE GEORGES LEMAITRE' and find 'AVENUE GEORGES LEMAîTRE'.
var address = AddressRepository.Find(m => m.Street == "AVENUE GEORGES LEMAITRE").ToList();
Possible? How?
Thanks.