How do I use lambda expressions to filter DataRows?

后端 未结 5 1680
时光取名叫无心
时光取名叫无心 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条回答
  •  梦毁少年i
    2021-02-13 09:44

    You can try this:

    var b=datatable.AsEnumerable.where(p=> p.Field   
    ("column_name")=="desire_value").CopyToDataTable()
    

提交回复
热议问题