How do I use lambda expressions to filter DataRows?

后端 未结 5 1681
时光取名叫无心
时光取名叫无心 2021-02-13 09:04

How can I search rows in a datatable for a row with Col1=\"MyValue\"

I\'m thinking something like

Assert.IsTrue(dataSet.Tables[0].Rows.
    FindAll(x =&g         


        
5条回答
  •  太阳男子
    2021-02-13 09:36

    You can use the Select method of the data table to do this, or the Filter Property of the DefaultDataView on the table.

    For the Select method:

    var rows = dataSet.Tables[0].Select("Col1 = 'MyValue'");
    

    For the DefaultView Filter:

    dataSet.Tables[0].DefaultView.Fitler = "Col1 = 'MyValue'";
    foreach (var drv in dataSet.Tables[0].DefaultView)
    {
        // Do your processing
    }
    

提交回复
热议问题