2012-11-15 62 views
0

符合條件刪除行我有以下幾點:Lambda表達式從數據視圖

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

使用OfType <>

view.Table.Rows.OfType<DataRow>() 
       .Where (row => row["Name"] == "Candy")