我有以下内容:
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)
我不想使用rowfilter。我知道我可以在那里添加一个子句来过滤该行。
答案 0 :(得分:0)
使用OfType<>
view.Table.Rows.OfType<DataRow>()
.Where (row => row["Name"] == "Candy")