Hi. Title says it all, really. I'm trying to do a query that ignores accents (that is, e and é are considered the same thing). I have this working with Oracle text using an index my DBA created, with the CONTAINS keyword in a query.
Is there any way to do that from an Entity Framework query in Linq? The only option I've seen so far is to create a stored procedure that does it and then import that.
If not, is this something that could be added one day? It'd be pretty useful.