问题描述
大家好,我有一个问题:
DataSet DS;
DS.Tables [0] .DefaultView.RowFilter = [名称]喜欢''%w [eēéěè]%''';
运算符错误:字符串模式''%w [eēéěè]%''是无效。
DS.Tables [0] .DefaultView.RowFilter =[姓名]喜欢''w [eēéěè] *''';
运算符:字符串模式''w [eēéěè] *''无效。
我喜欢这个
DS.Tables [0] .DefaultView .RowFilter =[姓名]喜欢''%w [[]eēéěè[]]%'';
它不起作用.... 。
我该怎么办?
......
谢谢你的阅读........
如果你解决了,非常感谢.....
hello everyone, I have a problem :
DataSet DS ;
DS.Tables[0].DefaultView.RowFilter="[Name] Like ''%w[eēéěè]%''";
Error in operator: the string pattern ''%w[eēéěè]%'' is invalid.
DS.Tables[0].DefaultView.RowFilter="[Name] Like ''w[eēéěè]*''";
Error in operator: the string pattern ''w[eēéěè]*'' is invalid.
I do like this
DS.Tables[0].DefaultView.RowFilter="[Name] Like ''%w[[]eēéěè[]]%''";
it doesn''t work .....
what should I do ?
......
thank u for your reading........
if you solve , very thank .....
这篇关于如何使用rowfilter作为“Like”与数据集有问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!