C#实现条件组合查询

string strSql="select * from tablename where 1=1"
if(textbox1.text!="")
{
 strSql += strSql+" and column1='" + textbox1.text + "'";
}
if(textbox2.text!="")
{
 strSql += strSql+" and column2='" + textbox2.text + "'";
}
...
if(textbox10.text!="")
{
strSql += strSql+" and column10='" + textbox10.text + "'";
}

 

你可能感兴趣的:(C#)