Hi Leon,
You might add a bool column (in memory) to the datatable, set it
accordingly to your condition and then filter (or select) on that column (or
just do a foreach loop and compose your result manually).
I don't think you'll be able to do it with Select method easily.
Miha
"Leon_Amirreza" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Suppose there is a field f1 of type byte[] on table1!
> How should I write the select expressions! this doesnt work and causes
> error:
> table1.Select("f1 = 0xefcda9", "")
> also this doesnt work too on c#:
> table1.Select("f1 = '0xefcda9'", "")
>
|