如何使DataView的RowFilter满足多个条件?
例如,我在datatable如下所示id name other1 other2
1 aaa 1234 asdfsaf
2 bbb 2342 asdfsaf
3 ccc 3434 asdfdsaf
4 aaa 1234 asdqer
1 aaa 3423 sdfsdfs
我要通过过滤找到id,name,other1同时满足条件的项如何实现? --------------------编程问答-------------------- dataview.RowFilter = "" + id+ " ='" + 1 + "' And " + name + " ='" + aaa+ "'"
我自己解决了!
呵呵!好开心!
--------------------编程问答-------------------- 该回复被版主删除 --------------------编程问答-------------------- 嗯,学习了,结贴吧
补充:.NET技术 , VB.NET