本篇文章給大家分享的是有關(guān)Linq中怎么實(shí)現(xiàn)動(dòng)態(tài)條件查詢,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
目前創(chuàng)新互聯(lián)公司已為超過千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站運(yùn)營(yíng)、企業(yè)網(wǎng)站設(shè)計(jì)、鹿寨網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
在開發(fā)項(xiàng)目的過程中,我們經(jīng)常會(huì)遇到這樣的需求,動(dòng)態(tài)組合條件的查詢。比如淘寶中的高級(jí)搜索:
實(shí)例講解Linq動(dòng)態(tài)條件查詢
要實(shí)現(xiàn)這個(gè)功能,通常的做法是拼接SQL查詢字符串,不管是放在程序中或是在存儲(chǔ)過程中?,F(xiàn)在出現(xiàn)了Linq,下面來看看Linq動(dòng)態(tài)條件查詢是怎樣實(shí)現(xiàn)的。
還是以Northwind數(shù)據(jù)庫為例,如果要查詢所有CustomerID以A或者B字母開頭的Customer,一般我們會(huì)這樣寫:
var results = ctx.Customers.Where(c => c.CustomerID.StartsWith("A") || c.CustomerID.StartsWith("B"));
如果需求改變,還要查詢出以X字母或者Y字母開頭的Customer,那可以增加查詢條件:
var results = ctx.Customers.Where(c => c.CustomerID.StartsWith("A") || c.CustomerID.StartsWith("B") || c.CustomerID.StartsWith("X") || c.CustomerID.StartsWith("Y"));
不過如果該需求不確定呢?我們不知道具體是哪些字母,可能傳過來的是一個(gè)字符串?dāng)?shù)組:
string[] starts = .... var results = ctx.Customers.Where(c => ?);
我們可能很自然的這樣寫,雖然很清楚要做什么,但是很可惜編譯不通過,編譯器并不允許我們像這樣來組合條件。
Expressionbool>> condition = cus => true; foreach (string s in starts) { condition = cus => cus.CustomerID.StartsWith(s) || condition(cus); }
在Linq動(dòng)態(tài)條件中提供一些方法允許我們動(dòng)態(tài)構(gòu)造Lambda表達(dá)式。如Expression.Call, Expression.Or, Expression.And,這樣代碼就可以寫成:
ParameterExpression c = Expression.Parameter(typeof(Customer), "c"); Expression condition = Expression.Constant(false); foreach (string s in starts) { Expression con = Expression.Call( Expression.Property(c, typeof(Customer).GetProperty("CustomerID")), typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) }), Expression.Constant(s)); condition = Expression.Or(con, condition); } Expressionbool>> end = Expression.Lambda bool>>(condition, new ParameterExpression[] { c });
現(xiàn)在來解釋Linq動(dòng)態(tài)條件這段代碼,首先構(gòu)造了一個(gè)ParameterExpression對(duì)象,它作為參數(shù)傳到Lambda表達(dá)中(相當(dāng)于c => c.CustomerID.StartsWith("A")這里的c)。然后用值為false的Expression用來初始化該表達(dá)式(Expression.Constant(false))。
Expression con = Expression.Call( Expression.Property(c, typeof(Customer).GetProperty("CustomerID")), typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) }), Expression.Constant(s)); condition = Expression.Or(con, condition);
上面這段代碼是重頭戲,用Expression.Call方法動(dòng)態(tài)構(gòu)造一個(gè)表達(dá)式,其中Expression.Property(c, typeof(Customer).GetProperty("CustomerID"))轉(zhuǎn)換為c.CustomerID,typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) })表示string的StartsWith(string)方法,Expression.Constant(s)表示字符串常量,這個(gè)方法可以表示成:c.CustomerID.StartsWith(s)。然后調(diào)用Expression.Or方法組合各個(gè)條件(根據(jù)邏輯關(guān)系不同調(diào)用不同的方法,如or,and...)。
最后構(gòu)造成Lambda表達(dá)式,現(xiàn)在就可以使用它了 ctx.Customers.Where(end)。
以上就是Linq中怎么實(shí)現(xiàn)動(dòng)態(tài)條件查詢,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。