1
Reply

How to Filter the Data in Data Table?

Manoj Kumar

Manoj Kumar

Dec 19, 2016
631
0

    We can do it by using two different approaches 1.DataTableObjectName.Select(Condition) e.g..,DataTable table = DataSet1.Tables["Orders"];// Presuming the DataTable has a column named Date.string expression;expression = "Date > #1/1/00#";DataRow[] foundRows;// Use the Select method to find all rows matching the filter.foundRows = table.Select(expression);// Print column 0 of each returned row.for(int i = 0; i < foundRows.Length; i ++){Console.WriteLine(foundRows[i][0]);}2.Using RowFIlterdataView.RowFilter = "id = 10";

    Manoj Kumar
    December 19, 2016
    0