我有以下内容:
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)
我不想使用行过滤器。我知道我可以在那里添加一个子句来过滤该行。