怎么在 C#环境里使用 MongoDB 实现多条件动态组合查询
答案:1 悬赏:50 手机版
解决时间 2021-04-05 10:08
- 提问者网友:动次大次蹦擦擦
- 2021-04-04 12:54
怎么在 C#环境里使用 MongoDB 实现多条件动态组合查询
最佳答案
- 五星知识达人网友:duile
- 2021-04-04 13:13
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 + "'";
}
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 + "'";
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯