91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Linq中怎么實現動態條件查詢

發布時間:2021-07-20 11:17:36 來源:億速云 閱讀:409 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關Linq中怎么實現動態條件查詢,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

在開發項目的過程中,我們經常會遇到這樣的需求,動態組合條件的查詢。比如淘寶中的高級搜索:

Linq中怎么實現動態條件查詢
實例講解Linq動態條件查詢

要實現這個功能,通常的做法是拼接SQL查詢字符串,不管是放在程序中或是在存儲過程中。現在出現了Linq,下面來看看Linq動態條件查詢是怎樣實現的。

還是以Northwind數據庫為例,如果要查詢所有CustomerID以A或者B字母開頭的Customer,一般我們會這樣寫:

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"));

不過如果該需求不確定呢?我們不知道具體是哪些字母,可能傳過來的是一個字符串數組:

string[] starts = ....  var results = ctx.Customers.Where(c => ?);

我們可能很自然的這樣寫,雖然很清楚要做什么,但是很可惜編譯不通過,編譯器并不允許我們像這樣來組合條件。

Expression<FUNC<CUSTOMER,< SPAN>bool>> condition = cus => true;  foreach (string s in starts)  {      condition = cus => cus.CustomerID.StartsWith(s) || condition(cus);  }

在Linq動態條件中提供一些方法允許我們動態構造Lambda表達式。如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);   }   Expression<FUNC<CUSTOMER, < SPAN>bool>> end =       Expression.Lambda<FUNC<CUSTOMER, < SPAN>bool>>(condition, new ParameterExpression[] { c });

現在來解釋Linq動態條件這段代碼,首先構造了一個ParameterExpression對象,它作為參數傳到Lambda表達中(相當于c => c.CustomerID.StartsWith("A")這里的c)。然后用值為false的Expression用來初始化該表達式(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方法動態構造一個表達式,其中Expression.Property(c, typeof(Customer).GetProperty("CustomerID"))轉換為c.CustomerID,typeof(string).GetMethod("StartsWith", new Type[] { typeof(string) })表示string的StartsWith(string)方法,Expression.Constant(s)表示字符串常量,這個方法可以表示成:c.CustomerID.StartsWith(s)。然后調用Expression.Or方法組合各個條件(根據邏輯關系不同調用不同的方法,如or,and...)。

最后構造成Lambda表達式,現在就可以使用它了 ctx.Customers.Where(end)。

以上就是Linq中怎么實現動態條件查詢,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

漠河县| 临城县| 台中市| 章丘市| 固始县| 日照市| 汽车| 沙雅县| 增城市| 望奎县| 玉溪市| 乐安县| 五家渠市| 宁陵县| 兴义市| 安远县| 横山县| 舞钢市| 南丹县| 汶川县| 朝阳区| 永吉县| 宁德市| 濮阳市| 长寿区| 亚东县| 泾源县| 蓝田县| 临城县| 清河县| 格尔木市| 泽库县| 湖南省| 老河口市| 长泰县| 德清县| 民乐县| 济源市| 唐山市| 凯里市| 绥中县|