您好,登錄后才能下訂單哦!
本篇內容主要講解“linq動態條件查詢如何使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“linq動態條件查詢如何使用”吧!
1,linq動態條件之構造表達式樹
private Expression<Func<Blog, bool>> getCondition()
{
Expression<Func<Blog, bool>> expression = blog => true;
if (!String.IsNullOrEmpty(Request["BlogClassID"]))
{
int blogClassID;
if (Int32.TryParse(Request["BlogClassID"], out blogClassID))
{
Expression<Func<Blog, bool>> e2 = blog =>
blog.BlogClass == null;
var invokedExpr = Expression.Invoke
(e, expression.Parameters.Cast
()); expression = Expression.Lambda<Func<Blog, bool>>
(Expression.And(expression.Body, invokedExpr), expression.Parameters);}
}
return expression;
}
主查詢是這個樣子:
var result = new DongBlogDataContext().Blogs.Where(getCondition());
因為根據SQL追蹤,生成SQL類似:
SELECT [t0].[BlogID], [t0].[ChannelID], [t0].[BlogClassID], [t0].[Title], [t0].[Content], [t0].[Tag], [t0].[CreateDateTime] FROM [dbo].[Blog] AS [t0] WHERE [t0].[BlogClassID] IS NULL
這種方法是實質是合并Lamba表達式,也就是這三句。
SELECT [t0].[BlogID], [t0].[ChannelID], [t0].[BlogClassID], [t0].[Title], [t0].[Content], [t0].[Tag], [t0].[CreateDateTime] FROM [dbo].[Blog] AS [t0] WHERE [t0].[BlogClassID] IS NULL
如果每個條件合并都這么寫會很麻煩,幸好已經有人給寫好的輔助類:
using System; using System.Linq; using System.Linq.Expressions; using System.Collections.Generic; public static class PredicateBuilder { public static Expression<Func<T, bool>> True () { return f => true; } public static Expression<Func<T, bool>> False () { return f => false; } public static Expression<Func<T, bool>> Or (this Expression<Func<T, bool>> expr1, Expression<Func<T, bool>> expr2) { var invokedExpr = Expression.Invoke (expr2, expr1.Parameters.Cast ()); return Expression.Lambda<Func<T, bool>> (Expression.Or (expr1.Body, invokedExpr), expr1.Parameters); } public static Expression<Func<T, bool>> And (this Expression<Func<T, bool>> expr1, Expression<Func<T, bool>> expr2) { var invokedExpr = Expression.Invoke (expr2, expr1.Parameters.Cast ()); return Expression.Lambda<Func<T, bool>> (Expression.And (expr1.Body, invokedExpr), expr1.Parameters); } }
這個類可以用于Expression<Func
2,linq動態條件之構造Query
同***種查詢更好的寫法:
private IQueryable getQuery() { IQueryable query = new DongBlogDataContext().Blogs; if (!String.IsNullOrEmpty(Request["BlogClassID"])) { int blogClassID; if (Int32.TryParse(Request["BlogClassID"], out blogClassID)) query = query.Where(blog => blog.BlogClass == null); } return query.OrderByDescending(blog => blog.CreateDateTime); }
主查詢
var result = getQuery();
生成的SQL和***個完全相同。
到此,相信大家對“linq動態條件查詢如何使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。