首頁 > 後端開發 > C++ > 如何使用過濾器字典在 LINQ 中建立動態 WHERE 子句?

如何使用過濾器字典在 LINQ 中建立動態 WHERE 子句?

Patricia Arquette
發布: 2025-01-14 08:32:46
原創
240 人瀏覽過

How to Build a Dynamic WHERE Clause in LINQ Using a Dictionary of Filters?

在 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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板