Further filter a DataRow Array

  • Thread starter Thread starter ajit goel
  • Start date Start date
A

ajit goel

Hi Everyone;

I have applied a filter to a DataTable to return a DataRow array. I
would like to apply a filter to this DataRow array to further limit
the DataRows that I would like to work with. However DataRow does not
support the Select method.

How can I workaround this problem??

Ajit Goel
 
Hi,

Why don't you use DataView (with cumulative filter) or increment the filter
you use to select the rows?
 
Back
Top