我正在使用将DataSet绑定到ComboBox的MySql .Net Connector。 我试图使用二进制表达式过滤数据集,结果始终是空数据集。
this.customerBindingSource.Filter = "scale & 64";
this.customerBindingSource.Sort = "custid";
this.customerTableAdapter.Fill(this.requisitionDataSet11.customer);
如果我将过滤器更改为基本=我得到一些结果。
this.customerBindingSource.Filter = "scale = 64";
我正在尝试实现相当于sql的这个语句
SELECT * FROM customer where scale & 64 order by custid;