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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top