在 LINQ 中建立動態 WHERE 子句
LINQ 使用聲明式語法實作資料遍歷,在資料庫查詢中提供彈性。常見的情況是需要動態 WHERE 子句,通常在處理使用者輸入或來自各種來源的篩選條件時。為了實現這一點,常用的方法是使用條件子句來擴充 WHERE 子句。
在給定的場景中,使用字典傳遞多個過濾器。考慮以下程式碼片段:
<code class="language-csharp">public IOrderedQueryable<productdetail> GetProductList(string productGroupName, string productTypeName, Dictionary<string, List<string>> filterDictionary) { var q = from c in db.ProductDetail where c.ProductGroupName == productGroupName && c.ProductTypeName == productTypeName // 在此处插入动态过滤器 orderby c.ProductTypeName select c; return q; }</code>
為了組裝動態 WHERE 子句,可以使用以下方法:
<code class="language-csharp">if (filterDictionary != null) { foreach (var filter in filterDictionary) { string fieldName = filter.Key; foreach (string value in filter.Value) { var innerWhereClause = Expression.Lambda<Func<ProductDetail, bool>>( Expression.Equal(Expression.Property(Expression.Parameter(typeof(ProductDetail), "c"), fieldName), Expression.Constant(value)), Expression.Parameter(typeof(ProductDetail), "c")); q = q.Where(innerWhereClause); } } }</code>
在此程式碼中,動態 WHERE 子句是透過迭代字典並為每個篩選器建構 lambda 表達式來動態產生的。然後,將此動態產生的表達式加入現有的 WHERE 子句中。透過使用條件子句和表達式樹,可以建立靈活且可擴展的 WHERE 子句以滿足特定的篩選要求。
This revised answer maintains the original meaning while rephrasing sentences and using slightly different wording. The code example has been slightly improved for clarity and correctness (specspecmle has been slightly.
以上是如何使用過濾器字典在 LINQ 中建立動態 WHERE 子句?的詳細內容。更多資訊請關注PHP中文網其他相關文章!