DataView rowfilter with utf-8 string support
I am having trouble with the current ADO.NET 1.1 using DataView rowfilter.
I can NOT filter column that contain utf-8 string.
dv.RowFilter = "title LIKE '%" + utf8String + "%'"
It just return all the record from the table not the record that match my filtering.
Is there any improvement on the UTF-8 support in ADO.NET 2.0?
Thanks,
Kid

