use of DISTINCT in DataTable.Select Method

  • Thread starter Thread starter M.M Ansari
  • Start date Start date
M

M.M Ansari

Hi all

is it valid to use DISTINCT operator in select method of datatable? if yes
then what is syntax?

thanks in advance


Ansari
 
I don't believe distinct is supported. The only reserved words used in the
expression parser are:

And, Or, True, False, Is, In, Like, Not, Null, Between, Child, and Parent.

There are a number of functions handled as well (Abs, Acos, Ascii, Avg,
etc...) but none of these are of any use either.

I could be wrong. That was just a quick scan. My guess is you'll have to
code it by hand.

Pete
 
Back
Top