如何在BindingSource上进行二进制过滤

时间:2017-05-02 16:42:23

标签: c# mysql

我正在使用将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;

0 个答案:

没有答案