溫馨提示×

溫馨提示×

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

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

linq中聚合操作符怎么用

發(fā)布時(shí)間:2022-03-10 12:29:15 來源:億速云 閱讀:114 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)linq中聚合操作符怎么用的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

    一、Aggregate操作符

    Aggregate操作符對集合值執(zhí)行自定義聚合運(yùn)算。來看看Aggregate的定義:

    public static TSource Aggregate<TSource>(this IEnumerable<TSource> source, Func<TSource, TSource, TSource> func);
    public static TAccumulate Aggregate<TSource, TAccumulate>(this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func);
    public static TResult Aggregate<TSource, TAccumulate, TResult>(this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate, TSource, TAccumulate> func, Func<TAccumulate, TResult> resultSelector);

    可以看到Aggregate共有三個方法重載,這里以第一個重載方法為例。第一個重載方法里面的第二個參數(shù)是一個委托,委托的參數(shù)類型都是集合的元素類型,委托的返回值類型也是集合元素類型。例如:列出所有產(chǎn)品清單,每個產(chǎn)品名稱之間用頓號連接。

    先定義Product類:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace TogetherOperation
    {
        public class Product
        {
           public int Id { get; set; }
            public int CategoryId { get; set; }
            public string Name { get; set; }
            public double Price { get; set; }
            public DateTime CreateTime { get; set; }
        }
    }

    在Main()方法中調(diào)用:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace TogetherOperation
    {
        class Program
        {
            static void Main(string[] args)
            {
                List<Product> listProduct = new List<Product>()
                {
                   new Product(){Id=1,CategoryId=1, Name="C#高級編程第10版", Price=100.67,CreateTime=DateTime.Now},
                   new Product(){Id=2,CategoryId=1, Name="Redis開發(fā)和運(yùn)維", Price=69.9,CreateTime=DateTime.Now.AddDays(-19)},
                   new Product(){Id=3,CategoryId=2, Name="活著", Price=57,CreateTime=DateTime.Now.AddMonths(-3)},
                   new Product(){Id=4,CategoryId=3, Name="高等數(shù)學(xué)", Price=97,CreateTime=DateTime.Now.AddMonths(-1)},
                   new Product(){Id=5,CategoryId=6, Name="國家寶藏", Price=52.8,CreateTime=DateTime.Now.AddMonths(-1)}
                };
    
                // 1、Aggregate
                // 因?yàn)镹ame是string類型的,所以委托的參數(shù)和返回值的參數(shù)類型都是string類型的,直接輸出即可
                // current和next都是listProduct中的Name的值
                var query = listProduct.Select(c => c.Name).Aggregate((current, next) => string.Format("{0}、{1}", current, next));
                Console.WriteLine(query);
                Console.ReadKey();
            }
        }
    }

    結(jié)果:

    linq中聚合操作符怎么用

    從結(jié)果可以看出:最后輸出的結(jié)果是Name拼接的值,并且以頓號進(jìn)行分割。

    二、Average操作符

    Average操作符和T-SQL中的Avg效果一樣,是求集合中元素的平均值,來看看Average的方法定義。

    linq中聚合操作符怎么用

    可以看出Average有很多方法的重載,可以直接對基本數(shù)據(jù)類型的集合求平均值,也可以對其他類型集合中的某個元素求平均值,來看下面的示例:

    1、直接求基本類型集合的平均值

    List<int> list = new List<int>();
    list.Add(1);
    list.Add(3);
    list.Add(4);
    list.Add(5);
    list.Add(6);
    list.Add(10);
    list.Add(13);
    var result = list.Average();
    Console.WriteLine("平均值:"+result);

    結(jié)果:

    linq中聚合操作符怎么用

    2、求listProduct集合中價(jià)格的平均值

    var result = listProduct.Average(p => p.Price);
    Console.WriteLine("平均值:" + result);

    結(jié)果:

    linq中聚合操作符怎么用

    三、Count操作符

    Count操作符是求集合中元素的個數(shù)。返回值類型是Int32。來看看方法的定義:

    linq中聚合操作符怎么用

    來看下面的例子:

    int count1 = listProduct.Count(); //5
    // 查詢出CategoryId為1的集合的個數(shù)
    // 查詢表達(dá)式
    int count2 = (from p in listProduct where p.CategoryId == 1 select p).Count();    //2
    // 方法語法
    int count3 = listProduct.Count(p => p.CategoryId == 1);    //2
    Console.WriteLine(count1);
    Console.WriteLine(count2);
    Console.WriteLine(count3);

    結(jié)果:

    linq中聚合操作符怎么用

    四、LongCount操作符

    LongCount操作符也是求集合中元素的個數(shù)。返回值類型是Int64。來看看方法的定義:

    linq中聚合操作符怎么用

    來看下面的例子:

    long count1 = listProduct.LongCount(); //5
    // 查詢出CategoryId為1的集合的個數(shù)
    // 查詢表達(dá)式
    long count2 = (from p in listProduct where p.CategoryId == 1 select p).LongCount();    //2
    // 方法語法
    long count3 = listProduct.LongCount(p => p.CategoryId == 1);    //2
    Console.WriteLine(count1);
    Console.WriteLine(count2);
    Console.WriteLine(count3);

    結(jié)果:

    linq中聚合操作符怎么用

    五、Max操作符

    Max操作符是求集合中元素的最大數(shù)。來看看方法的定義:

    linq中聚合操作符怎么用

    從方法定義中可以看出:Max操作符既可以求基本數(shù)值類型集合的最大值,也可以求其他類型集合中滿足條件的最大值??聪旅娴睦樱?/p>

    List<int> list = new List<int>();
    list.Add(1);
    list.Add(3);
    list.Add(4);
    list.Add(5);
    list.Add(6);
    list.Add(10);
    list.Add(13);
    Console.WriteLine(list.Max());  //13
    Console.WriteLine(listProduct.Max(p => p.Price)); //100.67
    Console.WriteLine((from p in listProduct select p.Price).Max());  //100.67

    結(jié)果:

    linq中聚合操作符怎么用

    六、Min操作符

    Min操作符是求集合中元素的最小值。來看看定義:

    linq中聚合操作符怎么用

    從方法定義中可以看出:Min操作符既可以求基本數(shù)值類型集合的最小值,也可以求其他類型集合中滿足條件的最小值??聪旅娴睦樱?/p>

    List<int> list = new List<int>();
    list.Add(1);
    list.Add(3);
    list.Add(4);
    list.Add(5);
    list.Add(6);
    list.Add(10);
    list.Add(13);
    Console.WriteLine(list.Min());  //1
    Console.WriteLine(listProduct.Min(p => p.Price)); //52.8
    Console.WriteLine((from p in listProduct select p.Price).Min());  //52.8

    結(jié)果:

    linq中聚合操作符怎么用

    七、Sum操作符

    Sum操作符是求集合中元素的和。來看看定義:

    linq中聚合操作符怎么用

    從方法定義中可以看出:Sum操作符既可以求基本數(shù)值類型集合中元素的和,也可以求其他類型集合中滿足條件的元素的和??聪旅娴睦樱?/p>

    List<int> list = new List<int>();
    list.Add(1);
    list.Add(3);
    list.Add(4);
    list.Add(5);
    list.Add(6);
    list.Add(10);
    list.Add(13);
    Console.WriteLine(list.Sum());  //42
    Console.WriteLine(listProduct.Sum(p => p.Price));   //377.37
    Console.WriteLine((from p in listProduct select p.Price).Sum());  //377.37

    結(jié)果:

    linq中聚合操作符怎么用

    感謝各位的閱讀!關(guān)于“l(fā)inq中聚合操作符怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

    向AI問一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI