gpt4 book ai didi

c# mysql - 搜索框。搜索指定

转载 作者:行者123 更新时间:2023-11-29 17:58:34 25 4
gpt4 key购买 nike

美好的一天。我正在研究我的搜索框。我如何从多列中进行搜索。除了“id”列之外,我还有名字、姓氏、RFIDnum。我如何将它们添加到我当前的代码中。

这是我的代码:

DataView dv = new DataView(dbdataset);
dv.RowFilter = string.Format("convert(id, 'System.String') LIKE '%{0}%'", searchbox.Text);
dataGridView1.DataSource = dv;

最佳答案

您也可以尝试添加其他条件以及 OR 运算符,例如,

DataView dv = new DataView(dbdataset);
dv.RowFilter = string.Format("convert(id, 'System.String') LIKE '%{0}%' OR convert(firstname, 'System.String') LIKE '%{0}%' OR convert(lastname, 'System.String') LIKE '%{0}%' OR convert(RFIDnum, 'System.String') LIKE '%{0}%'", searchbox.Text);
dataGridView1.DataSource = dv;

希望这有帮助!

关于c# mysql - 搜索框。搜索指定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48594186/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com