在数据绑定

时间:2017-02-27 13:42:30

标签: c# sql database data-binding

我试图做this例子。 Here是我写的代码。插入/删除功能工作正常但我尝试搜索时出错。以下是代码中的搜索查询。

phoneBooksBindingSource.Filter = string.Format("PhoneNumber = '{0}'  OR FullName LIKE '*{1}*' OR Email='{2}' OR Adress LIKE '*{3}*'", txtPhoneNumber.Text, txtFullName.Text, txtEmail.Text, txtAdress.Text);

我尝试使用%代替*。没工作。

1 个答案:

答案 0 :(得分:0)

在链接的源代码中,您在第二个格式项中有额外的空间:您使用了"{ 1}"但它应该是"{1}"。这应该抛出System.FormatException