Filter DataView for Duplicates?

  • Thread starter Thread starter xenophon
  • Start date Start date
X

xenophon

I have a DataTable with duplicates in a column. I would like to
display only this column in a DataView, but remove any duplicates that
exist. How can I do that?

Thanks.
 
Hi,

xenophon said:
I have a DataTable with duplicates in a column. I would like to
display only this column in a DataView,

That depends on UI consumer (which columns are visible)

but remove any duplicates that

You can't automatically.
Either you retrive just distinct data or remove rows from datatable.

--
Miha Markic [MVP C#] - RightHand .NET consulting & development
www.rthand.com
SLODUG - Slovene Developer Users Group www.codezone-si.info

How can I do that?
 
Back
Top