I need to find records in a dataset that have specific values from more than one column. I cannot use the Find or Contains method since they require a primary key and my search values may not be unique. Does the DataSet have indexes (like an SQL table) that I can use to speed up my search? Right now I am going through a dataSet doing comparisons for each column, but this method is very slow (my data set has 600k rows).
thank
source
share