ASP.NET三层架构之不确定查询参数个数的查询
在做三层架构的时候,特别是对表做查询的时候,有时候并不确定查询条件的个数,比如查询学生表:有可能只输入学号,或者姓名,或者性别,总之查询条件的参数个数并不确定,下面是我用List实现传值的代码:
附图如下:

在这里附上数据库的表结构:
CREATE TABLE Student(
StuId VARCHAR(6) PRIMARY KEY,
StuName VARCHAR(10) NOT NULL,
MajorId INT NOT NULL,
Sex VARCHAR(2) NOT NULL DEFAULT '男',
Birthdate SMALLDATETIME NOT NULL,
Credit FLOAT,
Remark VARCHAR(200)
)
------------------------------------------------------------------------------------------------
程序代码如下:
Model层----------------------------------------------包含两个类------------------------
------------------表的实体类Student-----------------
public class Student
{
private string stuId;
public string StuId
{
get { return stuId; }
set { stuId = value; }
}
private string stuName;
public string StuName
{
get { return stuName; }
set { stuName = value; }
}
private int majorId;
public int MajorId
{
get { return majorId; }
set { majorId = value; }
}
private string sex;
public string Sex
{
get { return sex; }
set { sex = value; }
}
private DateTime birthdate;
public DateTime Birthdate
{
get { return birthdate; }
set { birthdate = value; }
}
private float credit;
public float Credit
{
get { return credit; }
set { credit = value; }
}
private string remark;
public string Remark
{
get { return remark; }
set { remark = value; }
}
}
------------------Condition主要用于传递参数,这个类也可以定义在别的地方-------------------
public class Condition
{
public string paramName { get; set; }
public string paramValue { get; set; }
public ConditionOperate Operation { get; set; }
// 查询所用到的运算操作符
public enum ConditionOperate : byte
{
Equal, // 等于
NotEqual, // 不等于
Like, // 模糊查询
Lessthan, // 小于等于
GreaterThan // 大于
}
}
---------------------DAL层-----------------------------------------------------------------
------------------DBHelper类---------------------------------------------
public class DBHelper
{
private SqlConnection conn;
private SqlCommand cmd;
private SqlDataAdapter sda;
private DataSet ds;
public DBHelper()
{
conn = new SqlConnection(ConfigurationManager.ConnectionStrings["key"].ConnectionString);
}
// 不带参数的查询
public DataSet GetResult(string sql, CommandType type)
{
cmd = new SqlCommand(sql, conn);
sda = new SqlDataAdapter(cmd);
conn.Close();
ds = new DataSet();
sda.Fill(ds, "student");
return ds;
}
// 带参数的查询
public DataSet GetResult(string sql, CommandType type, params SqlParameter[] paras)
{
cmd = new SqlCommand(sql, conn);
if (type == CommandType.StoredProcedure)
{
cmd.CommandType = CommandType.StoredProcedure;
}
cmd.Parameters.AddRange(paras);
sda = new SqlDataAdapter(cmd);
conn.Close();
ds = new DataSet();
sda.Fill(ds, "student");
return ds;
}
}
-----------------------------对Student表操作类
public class StudenDAL
{
public DataSet GetStudent(List<Condition> condition)
{
DataSet ds = new DataSet();
DBHelper db = new DBHelper();
string sql = "select * from student";
// 如果带查询语句带参数
if (condition.Count > 0)
{
sql += SqlString(condition);
ds = db.GetResult(sql, CommandType.Text, SqlParas(condition));
}
else
{
ds = db.GetResult(sql, CommandType.Text);
}
return ds;
}
----------------------以下两个可以写成一个类,以便如果有多张表时,可以实现代码的复用----------------------------------
// 获取查询参数
public SqlParameter[] SqlParas(List<Condition> cond)
{
List<SqlParameter> paras = new List<SqlParameter>();
for (int i = 0; i < cond.Count; i++)
{
SqlParameter para = new SqlParameter("@" + cond[i].paramName, cond[i].paramValue);
if (cond[i].Operation == Condition.ConditionOperate.Like)
{
para.SqlValue = "%" + cond[i].paramValue + "%";
}
paras.Add(para);
}
return paras.ToArray();
}
// 获取SQL查询语句的where子句
public string SqlString(List<Condition> cond)
{
string sqlWhere = string.Empty;
List<string> where = new List<string>();
// 数组元素的顺序应该与ConditionOperate枚举值顺序相同
string[] operateType = { " = ", " <> ", " Like ", " <= ", " >= " };
for (int i = 0; i < cond.Count; i++)
{
int index = (int)cond[i].Operation;
where.Add(string.Format("{0}" + operateType[index] + "{1}", cond[i].paramName, "@" + cond[i].paramName));
}
sqlWhere = " where " + string.Join(" and ", where.ToArray());
return sqlWhere;
}
}
------------------------------BLL层---------------------------
public class StudentBLL
{
private readonly StudenDAL stuDal = new StudenDAL();
public DataSet GetStudent(List<Condition> condition)
{
return stuDal.GetStudent(condition);
}
}
------------------------------UI层,查询按钮的单击事件-------------------------------------
protected void btnSearch_Click(object sender, EventArgs e)
{
Condition condition;
StudentBLL stu = new StudentBLL();
List<Condition> list = new List<Condition>();
if (txtId.Text!="")
{
condition = new Condition()
{
paramName = "stuId",
paramValue = txtId.Text,
Operation = Condition.ConditionOperate.Equal
};
list.Add(condition);
}
if (txtName.Text!="")
{
condition = new Condition()
{
paramName = "stuName",
paramValue = txtName.Text,
Operation = Condition.ConditionOperate.Equal
};
list.Add(condition);
}
if (txtSex.Text != "")
{
condition = new Condition()
{
paramName = "Sex",
paramValue = txtSex.Text,
Operation = Condition.ConditionOperate.Equal
};
list.Add(condition);
}
GridView1.DataSource = stu.GetStudent(list);
GridView1.DataBind();
}
ASP.NET三层架构之不确定查询参数个数的查询的更多相关文章
- Asp.Net 三层架构之泛型应用
一说到三层架构,我想大家都了解,这里就简单说下,Asp.Net三层架构一般包含:UI层.DAL层.BLL层,其中每层由Model实体类来传递,所以Model也算是三层架构之一了,例外为了数据库的迁移或 ...
- asp.net三层架构 及其中使用泛型获取实体数据介绍
asp.net中使用泛型获取实体数据可以发挥更高的效率,代码简洁方便,本例采用三层架构.首先在model层中定义StuInfo实体,然后在 DAL层的SQLHelper数据操作类中定义list< ...
- 新闻公布系统 (Asp.net 三层架构 )
2012年度课程设计---新闻公布系统(小结) ...
- ASP.NET三层架构的分析
BLL 是业务逻辑层 Business Logic Layer DAL 是数据访问层 Data Access Layer ASP.NET的三层架构(DAL,BLL,UI ...
- ASP.NET三层架构项目创建流程
1.进入VS2010,新建项目—>Visual C#—>Web—>ASP.NET空Web应用程序,如图所示: 2.在解决方案处右击—>新建项目—>Windows—> ...
- 三层架构的一点理解以及Dapper一对多查询
1.首先说一下自己对三层架构的一点理解 论坛里经常说会出现喜欢面相对象的写法,所以使用EF的,我个人觉得他俩没啥关系,先别反对,先听听我怎么说吧. 三层架构,基本都快说烂了,但今天还是说三层架构:UI ...
- 初学者-asp.net三层架构
一.概述: 通常意义上的三层架构就是将整个业务应用划分为:表现层(UI).业务逻辑层(BLL).数据访问层(DAL).区分层次的目的即为了“高内聚,低耦合”的思想.是一种总体设计的思想. 1.表现层( ...
- asp.net三层架构详解
一.数据库 /*==============================================================*/ /* DBMS name: Microsof ...
- asp.net三层架构详解(转)
摘自:http://www.cnblogs.com/cresuccess/archive/2008/12/10/1351675.html 一.数据库 ,) ) no ...
随机推荐
- 细说.NET中的多线程 (四 使用锁进行同步)
通过锁来实现同步 排它锁主要用来保证,在一段时间内,只有一个线程可以访问某一段代码.两种主要类型的排它锁是lock和Mutex.Lock和Mutex相比构造起来更方便,运行的也更快.但是Mutex可以 ...
- NanoProfiler - 适合生产环境的性能监控类库 之 实践ELK篇
上期回顾 上一期:NanoProfiler - 适合生产环境的性能监控类库 之 大数据篇 上次介绍了NanoProfiler的大数据分析理念,一晃已经时隔一年多了,真是罪过! 有朋友问到何时开源的问题 ...
- Git学习笔记(2)——版本的回退,和暂存区的理解
本文主要记录了版本的回退,以及工作区,暂存区概念的理解. //开始之前,先回顾上次的内容,修改文件如下,并提交到版本库. Git is a distributed version control sy ...
- JavaScript练习之for循环语句
for循环四要素:初始条件.循环条件.循环体.状态改变. 1.for(var a=i;i<=aa;i++) { 循环体(例sum=sum+i sum是输出的) } 例题 1-20关没关一分 2 ...
- 用css3实现各种图标效果(2)
写在前面 写的一模一样的css样式,结果却导致原来出来不一样的效果图. 用chrome的开发者工具查看,比较起来还是一模一样的css样式,可为什么会出现不一样的placeholder效果呢?一个白色粗 ...
- Atitit 五种IO模型attilax总结 blocking和non-blocking synchronous IO和asynchronous I
Atitit 五种IO模型attilax总结 blocking和non-blocking synchronous IO和asynchronous I 1.1. .3 进程的阻塞1 1.2. 网络 ...
- iOS开发——网络实用技术OC篇&网络爬虫-使用青花瓷抓取网络数据
网络爬虫-使用青花瓷抓取网络数据 由于最近在研究网络爬虫相关技术,刚好看到一篇的的搬了过来! 望谅解..... 写本文的契机主要是前段时间有次用青花瓷抓包有一步忘了,在网上查了半天也没找到写的完整的教 ...
- jeasyUI的treegrid批量删除多行(转载)
看上去,JavaScript的变量类型,也可以分为值类型和引用类型.赋值操作中,值类型,各自独立,互不干涉:引用类型,指针而已,大家指向同一个对象. 为什么这样说呢? 我是从jeasyUI的treeg ...
- CSS3选择器的研究,案例
在上一篇CSS3选择器的研究中列出了几乎所有的CSS3选择器,和伪类选择器,当是并没有做案例的研究,本想在那篇文章里面写,但想想如果把案例都写在那篇文章里面,对于查找来说就不是很方便,所有另开一篇来讲 ...
- MS SQL Server存储过程
1.Create.Alter和Drop CREATE PROCEDURE USP_CategoryList AS SELECT CategoryID,CategoryName FROM Categor ...