中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在asp.net項目中使用三層實現多條件檢索

發布時間:2020-12-17 15:30:04 來源:億速云 閱讀:176 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關如何在asp.net項目中使用三層實現多條件檢索,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

眾所周知,三層將項目分為界面層,業務邏輯層和數據訪問層(以最基本的三層為例)

同樣都知道,多條件檢索其實就是根據用戶選擇的條件項,然后來拼sql語句

那么,既然要根據用戶選擇的條件項來拼sql語句,就肯定要在界面層接收用戶的選擇,這時候問題來了:

我是要在界面層拼sql語句嗎,這么做完全沒問題,功能也完全可以實現,可是這么一來,你是破壞了三層的原則了嗎

那么還架三層做什么?

那我在數據訪問層拼sql語句好了,然后問題又來了:

在數據訪問層拼的話這么知道用戶選擇了哪幾個條件項呢,根據分層的原則,是不能把諸如textBox1.Text這樣的數據傳給數據訪問層的

其實解決的方案就是第二種方式,只是中間通過一個條件模型類來傳遞用戶的選擇

條件模型類如下:

public class SearchModel 
{ 
public string Name { get; set; }//記錄數據庫字段名 
public string Value { get; set; }//記錄對應的值 
public Action Action { get; set; }//記錄相應的操作 
}

選擇很難看出這個類的作用到底是什么,接著走你~

之后要準備一個枚舉:

public enum Action 
{ 
Lessthan, 
Greatthan, 
Like, 
Equart 
}

對應數據中中的幾個操作,如<,>,like,=等,可以根據自己的需要添加

當然你也可以用數字,不過魔鬼數字最好不要使用,所以還是定義一個枚舉吧~動動手指頭就ok了

假設現在要對一個圖書表進行多條件檢索

在界面層中的代碼:

List<SearchModel> ss = new List<SearchModel>(); 
if (!string.IsNullOrEmpty(Request.Form["txtName"]))//如果用戶在名字框中輸入了文字 
{ 
SearchModel model = new SearchModel(); 
model.Name = "BookName";//要操作的字段為書名 
model.Value = Request.Form["txtName"];//對應的值為用戶輸入的文字 
model.Action = Action.Like;//操作為like 
ss.Add(model); 
}//以下類似 
if (!string.IsNullOrEmpty(Request.Form["txtAuthor"])) 
{ 
SearchModel model = new SearchModel(); 
model.Name = "Author"; 
model.Value = Request.Form["txtAuthor"]; 
model.Action = Action.Like; 
ss.Add(model); 
} 
if (!string.IsNullOrEmpty(Request.Form["categoryId"])) 
{ 
SearchModel model = new SearchModel(); 
model.Name = "CategoryId"; 
model.Value = Request.Form["categoryId"]; 
model.Action = Action.Equart; 
ss.Add(model); 
} 
if (!string.IsNullOrEmpty(Request.Form["publisherId"])) 
{ 
SearchModel model = new SearchModel(); 
model.Name = "PublisherId"; 
model.Value = Request.Form["publisherId"]; 
model.Action = Action.Equart; 
ss.Add(model); 
} 
if (!string.IsNullOrEmpty(Request.Form["txtISBN"])) 
{ 
SearchModel model = new SearchModel(); 
model.Name = "ISBN"; 
model.Value = Request.Form["txtISBN"]; 
model.Action = Action.Like; 
ss.Add(model); 
} 
if (!string.IsNullOrEmpty(Request.Form["isDiscount"])) 
{ 
SearchModel model = new SearchModel(); 
model.Name = "Discount"; 
model.Value = "1"; 
model.Action = Action.Equart; 
ss.Add(model); 
} 
List<T_Books> books = searchBll.Searc(ss);//這里調用Bll進行操作

Bll就先不說,主要是Dal層的sql拼接

public List<T_Books> Search(List<SearchModel> ss)//接收傳進來的條件模型類集合,并對其進行遍歷 
{ 
string sql = "select * from T_Books where IsDelete=0 and ";//開始拼接sql語句 
for (int i = 0; i < ss.Count; i++) 
{ 
if (ss[i].Action == Action.Like) 
{ 
sql += ss[i].Name + " like '%" + ss[i].Value + "%'"; 
} 
if (ss[i].Action == Action.Equart) 
{ 
sql += ss[i].Name + " = " + ss[i].Value; 
} 
if (ss[i].Action == Action.Greatthan) 
{ 
sql += ss[i].Name + " > " + ss[i].Value; 
} 
if (ss[i].Action == Action.Lessthan) 
{ 
sql += ss[i].Name + " < " + ss[i].Value; 
} 
if (i != ss.Count - 1) 
{ 
sql += " and "; 
} 
} 
List<T_Books> list = new List<T_Books>(); 
DataTable table = SqlHelper.ExecuteDataTable(sql, CommandType.Text);//將拼接好的sql語句傳入,開始查詢數據庫 
foreach (DataRow row in table.Rows) 
{ 
T_Books book = GetModelByDataRow.GetBooks(row); 
list.Add(book); 
} 
return list;//返回符合條件的圖書集合,完成

 假設用戶輸入下圖的條件:

如何在asp.net項目中使用三層實現多條件檢索

最后貼上測試拼接的sql語句,如下

select * from T_Books where IsDelete=0 and BookName like '%C++%' and Author like '%JChubby%' and CategoryId = 15 and PublisherId = 16 and ISBN like '%1111%' and Discount = 1

以上就是如何在asp.net項目中使用三層實現多條件檢索,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

钦州市| 建水县| 丰都县| 陆良县| 福海县| 佛冈县| 广州市| 沅江市| 扬州市| 页游| 封丘县| 于都县| 嘉定区| 建水县| 礼泉县| 高淳县| 中卫市| 屏南县| 巴东县| 县级市| 穆棱市| 嘉荫县| 通州市| 嫩江县| 霍州市| 九江县| 丹阳市| 萍乡市| 托克托县| 呼伦贝尔市| 稷山县| 温宿县| 同心县| 新龙县| 济源市| 五寨县| 桃园县| 建阳市| 龙陵县| 福安市| 夹江县|