码迷,mamicode.com
首页 > 其他好文 > 详细

多条件查询

时间:2014-06-16 23:57:44      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:string   name   sql   new   res   app   

StringBuilder sql=new StringBuilder("select * from T ");
List<string> wheres=new List<string>();
if(adsf!=0)
{
wheres.Add(" pId="+a);
}
if(...)
{wheres.Add(" pName="+b);}
//判断用户是否选择了条件
if(wheres.Count > 0)
{
string wh=string.Join(" and",wheres.ToArray());
sql.Append(" where "+wh);
}

多条件查询,布布扣,bubuko.com

多条件查询

标签:string   name   sql   new   res   app   

原文地址:http://www.cnblogs.com/juexin/p/3789941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!