无法在 System.DateTime 和 System.String 上执行“Like”操作。
如题,我的意思是查询某月某日的记录,数据库里存的是日期格式,窗体界面上用monthCanlder1控件选择一个日期后,单击查询按钮 出现需要的数据,查询按钮代码如下:string strRowFilter = "";
if (() != "")
strRowFilter += "登记日期 like '%" + comboBox1.Text.Trim() + "%' and ";
if (strRowFilter != "")
strRowFilter = strRowFilter.Substring(0, strRowFilter.Length - 5);
tempTable.DefaultView.RowFilter = strRowFilter;
点击按钮后即出现 无法在 System.DateTime 和 System.String 上执行“Like”操作。这个提示,怎么才能把ComboBox中的日期格式转换为字符串格式,完成查询,请大家指点一下,谢谢了!!