欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C#表達式樹(Expression Trees)的使用

 更新時間:2025年06月11日 08:26:07   作者:ghost143  
本文主要介紹了C#表達式樹(Expression Trees)的使用,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

什么是表達式樹?

  • 表達式樹是C#中一種數(shù)據(jù)結(jié)構(gòu),用于以樹狀方式表示代碼中的表達式,每個節(jié)點代表一個操作(如算術(shù)運算、方法調(diào)用等)。
  • 它們允許你將代碼本身視為數(shù)據(jù)結(jié)構(gòu),能夠在運行時動態(tài)地分析、修改和執(zhí)行代碼。
  • 表達式樹最初是在 .NET 3.5 中引入的,主要用于支持 LINQ(語言集成查詢)。

 核心概念

1.表達式樹的構(gòu)建

  • 表達式樹的核心類型位于 System.Linq.Expressions 命名空間。
  • 可以手動構(gòu)建表達式樹,也可以通過Lambda表達式隱式構(gòu)建。
using System;
using System.Linq.Expressions;

class Program
{
    static void Main()
    {
        // 創(chuàng)建一個簡單的表達式:x => x + 1
        ParameterExpression param = Expression.Parameter(typeof(int), "x");
        BinaryExpression body = Expression.Add(param, Expression.Constant(1));
        Expression<Func<int, int>> expression = Expression.Lambda<Func<int, int>>(body, param);

        // 編譯并執(zhí)行表達式樹
        Func<int, int> compiledExpression = expression.Compile();
        int result = compiledExpression(5);

        Console.WriteLine($"Result: {result}"); // 輸出:Result: 6
    }
}

 在這個示例中,我們創(chuàng)建了一個簡單的表達式樹表示 x => x + 1,并將其編譯成可執(zhí)行代碼。

2. 表達式樹與Lambda表達式 

Lambda表達式可以被編譯為委托,也可以被表達式樹捕獲:

Expression<Func<int, int>> square = x => x * x;

此時,square不是一個委托,而是一棵描述 x * x 計算過程的樹,可用于分析和轉(zhuǎn)換。

3.解析和訪問表達式樹

表達式樹可以遍歷并分析其結(jié)構(gòu):

void PrintExpression(Expression exp, int level = 0)
{
    Console.WriteLine(new string(' ', level * 2) + exp.NodeType + " - " + exp.Type);
    if (exp is BinaryExpression bin)
    {
        PrintExpression(bin.Left, level + 1);
        PrintExpression(bin.Right, level + 1);
    }
    else if (exp is ParameterExpression param)
    {
        Console.WriteLine(new string(' ', (level+1) * 2) + "Parameter: " + param.Name);
    }
}

4.動態(tài)條件查詢

我們有一個 Product 類和一個產(chǎn)品列表。我們希望根據(jù)產(chǎn)品的價格動態(tài)過濾產(chǎn)品。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;

public class Product
{
    public string Name { get; set; }
    public decimal Price { get; set; }
}

class Program
{
    static void Main()
    {
        // 創(chuàng)建產(chǎn)品列表
        List<Product> products = new List<Product>
        {
            new Product { Name = "Laptop", Price = 1000m },
            new Product { Name = "Smartphone", Price = 500m },
            new Product { Name = "Tablet", Price = 300m }
        };

        // 動態(tài)創(chuàng)建表達式樹來過濾價格大于 400 的產(chǎn)品
        Func<Product, bool> filter = CreatePriceFilter(400m);

        // 使用生成的過濾器查詢產(chǎn)品
        var filteredProducts = products.Where(filter).ToList();

        foreach (var product in filteredProducts)
        {
            Console.WriteLine($"Product: {product.Name}, Price: {product.Price}");
        }
    }

    static Func<Product, bool> CreatePriceFilter(decimal minPrice)
    {
        // 創(chuàng)建參數(shù)表達式
        ParameterExpression param = Expression.Parameter(typeof(Product), "product");

        // 創(chuàng)建訪問屬性表達式
        MemberExpression priceProperty = Expression.Property(param, "Price");

        // 創(chuàng)建常量表達式
        ConstantExpression constant = Expression.Constant(minPrice);

        // 創(chuàng)建大于運算符表達式
        BinaryExpression comparison = Expression.GreaterThan(priceProperty, constant);

        // 創(chuàng)建 lambda 表達式
        Expression<Func<Product, bool>> lambda = Expression.Lambda<Func<Product, bool>>(comparison, param);

        // 編譯表達式樹為可執(zhí)行代碼
        return lambda.Compile();
    }
}

1.設(shè)置產(chǎn)品列表:

  •  我們先定義一個簡單的 Product 類和一個包含幾個產(chǎn)品的列表。

2.創(chuàng)建表達式樹:

  • 參數(shù)表達式:ParameterExpression param = Expression.Parameter(typeof(Product), "product"); 創(chuàng)建一個參數(shù),表示傳遞給過濾器的 Product 對象。
  • 屬性訪問表達式:MemberExpression priceProperty = Expression.Property(param, "Price"); 訪問傳遞對象的 Price 屬性。
  • 常量表達式:ConstantExpression constant = Expression.Constant(minPrice); 定義過濾條件中的常量值。
  • 比較表達式:BinaryExpression comparison = Expression.GreaterThan(priceProperty, constant); 創(chuàng)建一個比較表達式,檢查 Price 是否大于 minPrice。
  • lambda 表達式:將上述表達式組合成一個完整的 lambda 表達式,并編譯成可執(zhí)行代碼。

3.應(yīng)用表達式:

  • 使用 Where 方法將生成的過濾器應(yīng)用于產(chǎn)品列表,并輸出結(jié)果。

表達式樹的優(yōu)勢

1.動態(tài)構(gòu)建查詢

  • 表達式樹允許你在運行時構(gòu)建和修改查詢邏輯。這在需要根據(jù)用戶輸入或其他動態(tài)數(shù)據(jù)生成不同查詢條件時特別有用。

2.LINQ 提供程序支持:

  • 表達式樹是 LINQ 提供程序(如 LINQ to SQL、Entity Framework)的基礎(chǔ),它們將表達式樹解析為底層數(shù)據(jù)源(如數(shù)據(jù)庫、XML)的查詢語言。這意味著你可以用相同的代碼生成運行在不同數(shù)據(jù)源上的查詢。

3.性能優(yōu)化

  • 在某些情況下,表達式樹可以被編譯和緩存,提高重復(fù)執(zhí)行相同邏輯的性能。

4.元數(shù)據(jù)處理

  • 表達式樹提供對表達式結(jié)構(gòu)的訪問,這使得分析和處理代碼元數(shù)據(jù)成為可能。這對于開發(fā)動態(tài)應(yīng)用程序或框架尤其有用。

5.代碼轉(zhuǎn)換和重寫

  • 可以編寫代碼來遍歷和修改表達式樹,用于實現(xiàn)代碼轉(zhuǎn)換或重寫。這對于構(gòu)建復(fù)雜查詢或分析工具有很大幫助。

適用場景 

  • 動態(tài)條件查詢:當(dāng)應(yīng)用需要支持用戶定義的動態(tài)過濾條件時,表達式樹可以靈活地構(gòu)建這些條件。
  • 跨平臺查詢:在 LINQ to SQL 或 Entity Framework 中,表達式樹可被翻譯成 SQL 查詢,在數(shù)據(jù)庫執(zhí)行。
  • 規(guī)則引擎和DSL(領(lǐng)域特定語言):在這些場景中,表達式樹可以用于解析和執(zhí)行用戶定義的規(guī)則或查詢 

代碼復(fù)雜性的權(quán)衡 

  • 雖然表達式樹代碼在某些情況下顯得復(fù)雜,但其提供的靈活性和功能在復(fù)雜應(yīng)用中是非常關(guān)鍵的。
  • 如果只是簡單的篩選條件,直接使用 Lambda 表達式或 LINQ 查詢語法更為直接和清晰。

示例1:

假設(shè)我們有一個產(chǎn)品列表,用戶可以動態(tài)選擇多個條件進行過濾,比如根據(jù)名稱、價格范圍或庫存狀態(tài)等進行篩選。我們需要在運行時根據(jù)用戶輸入組合這些條件。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;

public class Product
{
    public string Name { get; set; }
    public decimal Price { get; set; }
    public bool InStock { get; set; }
}

class Program
{
    static void Main()
    {
        var products = new List<Product>
        {
            new Product { Name = "Laptop", Price = 1000, InStock = true },
            new Product { Name = "Smartphone", Price = 500, InStock = true },
            new Product { Name = "Tablet", Price = 300, InStock = false }
        };

        // 用戶可以選擇動態(tài)條件
        string searchName = "Laptop";
        decimal? minPrice = 400;
        decimal? maxPrice = null;
        bool? inStock = true;

        // 創(chuàng)建動態(tài)查詢表達式
        var filter = CreateDynamicFilter<Product>(searchName, minPrice, maxPrice, inStock);

        // 使用生成的過濾器查詢產(chǎn)品
        var filteredProducts = products.AsQueryable().Where(filter).ToList();

        foreach (var product in filteredProducts)
        {
            Console.WriteLine($"Product: {product.Name}, Price: {product.Price}, InStock: {product.InStock}");
        }
    }

    static Expression<Func<T, bool>> CreateDynamicFilter<T>(string name, decimal? minPrice, decimal? maxPrice, bool? inStock)
    {
        // 參數(shù)表達式
        var parameter = Expression.Parameter(typeof(T), "product");
        Expression expression = Expression.Constant(true); // 初始謂詞為 true

        // 根據(jù) name 動態(tài)創(chuàng)建條件
        if (!string.IsNullOrEmpty(name))
        {
            var nameProperty = Expression.Property(parameter, "Name");
            var nameValue = Expression.Constant(name);
            var nameExpression = Expression.Equal(nameProperty, nameValue);
            expression = Expression.AndAlso(expression, nameExpression);
        }

        // 根據(jù) minPrice 創(chuàng)建條件
        if (minPrice.HasValue)
        {
            var priceProperty = Expression.Property(parameter, "Price");
            var minPriceValue = Expression.Constant(minPrice.Value);
            var minPriceExpression = Expression.GreaterThanOrEqual(priceProperty, minPriceValue);
            expression = Expression.AndAlso(expression, minPriceExpression);
        }

        // 根據(jù) maxPrice 創(chuàng)建條件
        if (maxPrice.HasValue)
        {
            var priceProperty = Expression.Property(parameter, "Price");
            var maxPriceValue = Expression.Constant(maxPrice.Value);
            var maxPriceExpression = Expression.LessThanOrEqual(priceProperty, maxPriceValue);
            expression = Expression.AndAlso(expression, maxPriceExpression);
        }

        // 根據(jù) inStock 創(chuàng)建條件
        if (inStock.HasValue)
        {
            var stockProperty = Expression.Property(parameter, "InStock");
            var stockValue = Expression.Constant(inStock.Value);
            var stockExpression = Expression.Equal(stockProperty, stockValue);
            expression = Expression.AndAlso(expression, stockExpression);
        }

        // 創(chuàng)建 Lambda 表達式
        return Expression.Lambda<Func<T, bool>>(expression, parameter);
    }
}

示例2:

針對上文中只針對價格做篩選的示例,那么我們的篩選過程完全可以簡化成如下表達式

var filteredProducts = products.Where(p => p.Price > 400).ToList();

總結(jié)來說,是否使用表達式樹取決于你的具體需求和應(yīng)用場景。在需要動態(tài)處理和復(fù)雜邏輯的情況下,表達式樹提供了強大的工具支持,而在簡單場景下,直接使用 Lambda 表達式或常規(guī)方法更為合適。希望這能幫助你理解表達式樹的適用場景和優(yōu)勢!

到此這篇關(guān)于C#表達式樹(Expression Trees)的使用的文章就介紹到這了,更多相關(guān)C#表達式樹內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 基于C#實現(xiàn)哈夫曼樹算法

    基于C#實現(xiàn)哈夫曼樹算法

    哈夫曼樹又稱最優(yōu)二叉樹,也就是帶權(quán)路徑最短的樹,對于哈夫曼樹,我想大家對它是非常的熟悉,使用下面我們就來學(xué)習(xí)一下如何通過C#實現(xiàn)哈夫曼樹算法吧
    2023-11-11
  • C#中System.Text.Json匿名對象反序列化

    C#中System.Text.Json匿名對象反序列化

    這篇文章主要介紹了System.Text.Json匿名對象反序列化,下文代碼基于. NET 6,為了代碼整潔,實際配置了PropertyNameCaseInsensitive = true,本文結(jié)合實例代碼介紹的非常詳細,需要的朋友可以參考下
    2023-05-05
  • C#中數(shù)組、ArrayList、List、Dictionary的用法與區(qū)別淺析(存取數(shù)據(jù))

    C#中數(shù)組、ArrayList、List、Dictionary的用法與區(qū)別淺析(存取數(shù)據(jù))

    在工作中經(jīng)常遇到C#數(shù)組、ArrayList、List、Dictionary存取數(shù)據(jù),但是該選擇哪種類型進行存儲數(shù)據(jù)呢?很迷茫,今天小編抽空給大家整理下這方面的內(nèi)容,需要的朋友參考下吧
    2017-02-02
  • C#實現(xiàn)汽車租賃系統(tǒng)項目

    C#實現(xiàn)汽車租賃系統(tǒng)項目

    這篇文章主要為大家詳細介紹了C#實現(xiàn)汽車租賃系統(tǒng)項目,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-01-01
  • 利用lambda表達式樹優(yōu)化反射詳解

    利用lambda表達式樹優(yōu)化反射詳解

    這篇文章主要給大家介紹了關(guān)于如何利用lambda表達式樹優(yōu)化反射的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2018-12-12
  • C#實現(xiàn)簡單的Login窗口實例

    C#實現(xiàn)簡單的Login窗口實例

    這篇文章主要介紹了C#實現(xiàn)簡單的Login窗口,實例分析了C#顯示及關(guān)閉登陸Login窗口的技巧,非常具有實用價值,需要的朋友可以參考下
    2015-08-08
  • C#實現(xiàn)計算年齡的簡單方法匯總

    C#實現(xiàn)計算年齡的簡單方法匯總

    本文給大家分享的是C#代碼實現(xiàn)的簡單實用的給出用戶的出生日期,計算出用戶的年齡的代碼,另外附上其他網(wǎng)友的方法,算是對計算年齡的一次小結(jié),希望大家能夠喜歡。
    2015-05-05
  • 換個方式使用C#開發(fā)微信小程序的過程

    換個方式使用C#開發(fā)微信小程序的過程

    這篇文章主要介紹了換個方式使用C#開發(fā)微信小程序的過程,演示使用C#寫的LiveCharts,點擊按鈕動態(tài)生成一些數(shù)據(jù),感興趣的朋友跟隨小編一起看看吧
    2025-05-05
  • C#中圖片.BYTE[]和base64string的轉(zhuǎn)換方法

    C#中圖片.BYTE[]和base64string的轉(zhuǎn)換方法

    下面小編就為大家?guī)硪黄狢#中圖片.BYTE[]和base64string的轉(zhuǎn)換方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-02-02
  • C# Invoke,begininvoke的用法詳解

    C# Invoke,begininvoke的用法詳解

    這篇文章主要介紹了C# Invoke,begininvoke的用法詳解,幫助大家更好的理解和使用c#,感興趣的朋友可以了解下
    2021-01-01

最新評論