我有两个DataView
要排序,在 dgtest1 中我试图排除包含 a 的数据,Typeid != 25
在 dgtest2 中我试图只显示数据 where Typeid == 25
。
当我单步执行代码时,我会抛出一个错误
“无法解释令牌'!' 在位置 6"。
有人可以告诉我如何正确使用字符串行过滤器吗?
参数有(Data Table table, string RowFilter, string Sort, DataViewRowState)
dgtest1.ItemsSource = new DataView(dttest1, "Typeid!= 25", "", DataViewRowState.CurrentRows);
dgtest2.ItemsSource = new DataView(dttest1, "Typeid == 25", "", DataViewRowState.CurrentRows);