I'm trying to filter my DataView DataSet using RowFilter.
I would like to perform a like statement on an Integer column
So something like this:
myDataView.RowFilter ="ID LIKE %1%";
This works fine for string columns but I receive an error when trying this will integers. I receive the follow error: Cannot perform 'Like' operation on System.Int32 and System.Int32.
Anyway of doing a LIKE statement on numbers?
Thanks in advance.