0

我有以下内容:

 DataView studentInfo=ds.Tales[0].DefaultView;//Assuming I have a DataTabe ds with data
 studentInfo.RowFilter=myRowfilter     

我想做类似的事情:

studentInfo(x=>x.remove(all students where some function returns true)     

我不想使用行过滤器。我知道我可以在那里添加一个子句来过滤该行。

4

1 回答 1

0

使用类型<>

view.Table.Rows.OfType<DataRow>()
               .Where (row => row["Name"] == "Candy")
于 2012-11-15T19:21:35.857 回答