Hi everyone! I haven't seen this question here, so I'll give it a try.
I'm from a country where some words have accents, like María.
I have all this words in a database and I would like to use the Select function from a DataTable but ignoring accents in the database.
I know this may be not possible; if it's not, it really should be implemented. Thanks in advance!
This is my current code:
dataTable.DefaultView.RowFilter = string.IsNullOrEmpty(text) ? string.Empty : string.Format("{0} LIKE '%{1}%'", field, text);