C# 中LINQ的详细介绍

文章目录

  • 前言
  • 一、 LINQ 的基本概念
  • 二、查询语法与方法语法
  • 三、LINQ 的投影操作
  • 四、LINQ 的排序操作
  • 五、LINQ 的过滤操作
  • 六、LINQ 的分组操作
  • 七、LINQ 的连接操作
  • 八、LINQ 的聚合操作
  • 九、LINQ 的延迟执行
  • 十、LINQ 的错误处理
  • 十一、LINQ 的合并操作
  • 十二、LINQ 的自定义对象查询
  • 十三、LINQ 的顺序查询
  • 十四、LINQ 的集合操作
  • 十五、LINQ 的数据聚集


前言

  LINQ(语言集成查询)是 C# 中用于从数组、集合、数据库等数据源中进行查询和操作的强大功能。它提供了一种统一的方式来处理各种数据。
在这里插入图片描述

一、 LINQ 的基本概念

  LINQ 是一种编程模式,可以让开发者以一种简洁的方式查询和操作数据。它简化了对数据的查询操作,使得数据操作变得更加直接和清晰。LINQ 可以与多种数据源结合使用,包括对象、数据库、XML 和数据集。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };var query = from n in numberswhere n > 2select n;foreach (var num in query){Console.WriteLine(num); // 输出: 3, 4, 5}}
}

二、查询语法与方法语法

  LINQ 支持两种主要的语法:查询语法和方法语法。查询语法更接近于 SQL,适合用来执行复杂的查询;方法语法基于方法链,更加灵活。两者虽然不同,但可以实现同样的功能。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<string> names = new List<string> { "Alice", "Bob", "Charlie", "Dave" };// 查询语法var querySyntax = from name in nameswhere name.StartsWith("C")select name;// 方法语法var methodSyntax = names.Where(n => n.StartsWith("C"));Console.WriteLine("查询语法:");foreach (var name in querySyntax) Console.WriteLine(name); // 输出: CharlieConsole.WriteLine("方法语法:");foreach (var name in methodSyntax) Console.WriteLine(name); // 输出: Charlie}
}

三、LINQ 的投影操作

  投影操作允许开发者选择特定的数据字段。Select 方法可以用来实现投影操作,将数据转化为新的形态。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{public class Person{public string Name { get; set; }public int Age { get; set; }}static void Main(){List<Person> people = new List<Person>{new Person { Name = "Alice", Age = 30 },new Person { Name = "Bob", Age = 25 },new Person { Name = "Charlie", Age = 35 }};var names = people.Select(p => p.Name);foreach (var name in names){Console.WriteLine(name); // 输出: Alice, Bob, Charlie}}
}

四、LINQ 的排序操作

  LINQ 允许按特定条件对数据进行排序,常用方法包括 OrderBy 和 OrderByDescending。这使得对结果进行排序变得非常简单。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{public class Product{public string Name { get; set; }public decimal Price { get; set; }}static void Main(){List<Product> products = new List<Product>{new Product { Name = "Laptop", Price = 999.99m },new Product { Name = "Smartphone", Price = 499.99m },new Product { Name = "Tablet", Price = 299.99m }};var sortedProducts = products.OrderBy(p => p.Price);foreach (var product in sortedProducts){Console.WriteLine($"{product.Name}: {product.Price}"); // 按价格输出产品}}
}

五、LINQ 的过滤操作

  使用 Where 方法,开发者可以对数据进行筛选,只返回符合特定条件的元素。这是 LINQ 中最常用的操作之一。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };var evenNumbers = numbers.Where(n => n % 2 == 0);Console.WriteLine("偶数:");foreach (var num in evenNumbers){Console.WriteLine(num); // 输出: 2, 4, 6, 8, 10}}
}

六、LINQ 的分组操作

  GroupBy 方法允许开发者按照某个属性将数据进行分组。通过分组,开发者可以更好地分析和展示数据。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{public class Student{public string Name { get; set; }public string Grade { get; set; }}static void Main(){List<Student> students = new List<Student>{new Student { Name = "Alice", Grade = "A" },new Student { Name = "Bob", Grade = "B" },new Student { Name = "Charlie", Grade = "A" },new Student { Name = "David", Grade = "C" }};var groupedStudents = students.GroupBy(s => s.Grade);foreach (var group in groupedStudents){Console.WriteLine($"年级: {group.Key}");foreach (var student in group){Console.WriteLine($" - {student.Name}");}}}
}

七、LINQ 的连接操作

  通过 Join 方法,开发者可以将两个集合连接在一起,以便进行更复杂的数据查询和处理。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{public class Student{public int Id { get; set; }public string Name { get; set; }}public class Enrollment{public int StudentId { get; set; }public string Course { get; set; }}static void Main(){List<Student> students = new List<Student>{new Student { Id = 1, Name = "Alice" },new Student { Id = 2, Name = "Bob" }};List<Enrollment> enrollments = new List<Enrollment>{new Enrollment { StudentId = 1, Course = "Math" },new Enrollment { StudentId = 2, Course = "Science" },new Enrollment { StudentId = 1, Course = "Science" }};var studentEnrollments = from student in studentsjoin enrollment in enrollments on student.Id equals enrollment.StudentIdselect new { student.Name, enrollment.Course };foreach (var se in studentEnrollments){Console.WriteLine($"{se.Name} 注册了 {se.Course}");}}
}

八、LINQ 的聚合操作

  LINQ 提供多种聚合操作,这些操作允许开发者对数据进行总结和统计。例如,Count、Sum、Max 和 Average 方法可以帮助计算某些属性的总和或平均值。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };int sum = numbers.Sum();int count = numbers.Count();int max = numbers.Max();double average = numbers.Average();Console.WriteLine($"总和: {sum}, 个数: {count}, 最大值: {max}, 平均值: {average}");}
}

九、LINQ 的延迟执行

  LINQ 查询默认情况下是延迟执行的,这意味着查询并不会在声明时执行,而是在实际迭代结果时才会被执行。这使得 LINQ 更加灵活,且在未被使用时不会消耗资源。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };var query = numbers.Where(n => n > 2);Console.WriteLine("查询尚未执行。");foreach (var num in query){Console.WriteLine(num); // 在此时查询会被执行}}
}

十、LINQ 的错误处理

  编写 LINQ 查询时,可能会遇到异常。有效的错误处理机制是确保应用程序正常运行的关键。可以结合 try-catch 块来捕捉和处理这些异常。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = null; // 模拟空集合try{var query = numbers.Where(n => n > 0);foreach (var num in query){Console.WriteLine(num);}}catch (NullReferenceException ex){Console.WriteLine("错误: " + ex.Message);}}
}

十一、LINQ 的合并操作

  通过 Concat 和 Union 方法,LINQ 允许将多个集合连接在一起。Concat 不会移除重复项,而 Union 会移除重复项。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers1 = new List<int> { 1, 2, 3 };List<int> numbers2 = new List<int> { 3, 4, 5 };var concatenated = numbers1.Concat(numbers2);var unioned = numbers1.Union(numbers2);Console.WriteLine("连接结果:");foreach (var num in concatenated){Console.WriteLine(num); // 输出: 1, 2, 3, 3, 4, 5}Console.WriteLine("联合结果:");foreach (var num in unioned){Console.WriteLine(num); // 输出: 1, 2, 3, 4, 5}}
}

十二、LINQ 的自定义对象查询

  LINQ 不只局限于内置的数据类型,也可以查询自定义对象。这为开发者提供了强大的数据操作能力。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{public class Book{public string Title { get; set; }public string Author { get; set; }}static void Main(){List<Book> books = new List<Book>{new Book { Title = "C# in Depth", Author = "Jon Skeet" },new Book { Title = "Effective C#", Author = "Bill Wagner" },new Book { Title = "CLR via C#", Author = "Jeffrey Richter" }};var query = from b in bookswhere b.Author.Contains("C#")select b;Console.WriteLine("包含 'C#' 的书籍:");foreach (var book in query){Console.WriteLine(book.Title);}}
}

十三、LINQ 的顺序查询

  LINQ 支持按照多个字段进行排序,可以通过链式调用 OrderBy 和 ThenBy 方法实现。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{public class Employee{public string Name { get; set; }public string Department { get; set; }public decimal Salary { get; set; }}static void Main(){List<Employee> employees = new List<Employee>{new Employee { Name = "Alice", Department = "HR", Salary = 70000 },new Employee { Name = "Bob", Department = "IT", Salary = 60000 },new Employee { Name = "Charlie", Department = "HR", Salary = 80000 },new Employee { Name = "David", Department = "IT", Salary = 90000 }};var sortedEmployees = employees.OrderBy(e => e.Department).ThenBy(e => e.Salary);foreach (var emp in sortedEmployees){Console.WriteLine($"{emp.Name} - {emp.Department} - {emp.Salary}");}}
}

十四、LINQ 的集合操作

  LINQ 提供 Any、All、Contains 等方法,用于判断集合中的元素是否满足某个条件。这对于进行集合操作和条件检查非常有用。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };bool anyGreaterThan3 = numbers.Any(n => n > 3);bool allGreaterThan0 = numbers.All(n => n > 0);bool containsTwo = numbers.Contains(2);Console.WriteLine($"有大于3的数: {anyGreaterThan3}");Console.WriteLine($"所有数都大于0: {allGreaterThan0}");Console.WriteLine($"包含2: {containsTwo}");}
}

十五、LINQ 的数据聚集

  LINQ 允许开发者轻松执行复杂的数据聚集操作,如 GroupBy 和 Aggregate 方法。特别是 Aggregate,可用于执行自定义的聚集操作。

示例代码:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };int product = numbers.Aggregate((total, next) => total * next);Console.WriteLine($"所有数的乘积: {product}"); // 输出: 120}
}

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/63201.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Observability:用 OpenTelemetry 自动检测 Python 应用程序

作者&#xff1a;来自 Elastic Bahubali Shetti 了解如何使用 OpenTelemetry 自动检测 Python 应用程序。使用 Docker 文件中的标准命令&#xff0c;可以快速检测应用程序&#xff0c;而无需在多个位置编写代码&#xff0c;从而实现快速更改、扩展和更轻松的管理。 更多阅读&a…

利用tablesaw库简化表格数据分析

tableaw是处理表格数据的优秀工具。它提供了一组强大而灵活的功能&#xff0c;使操作、分析和可视化数据表变得容易。在这篇博文中&#xff0c;我们将介绍tableaw的主要特性、如何使用这些特性&#xff0c;以及如何使用tableaw处理表格数据的一些示例。 tablesaw简介 tableaw…

通过精密时间协议(PTP)对计算机网络中的多个设备进行时间同步

PTP 模块 - 使用教程 目录 PTP 模块 - 使用教程简介第 1 步&#xff1a;为主时钟创建一个 PTP 时钟实例第 2 步&#xff1a;添加 PTP 端口第 3 步&#xff1a;查询 PTP 时钟或 PTP 端口的状态第 4 步&#xff1a;清除 FAULTY 状态第 5 步&#xff1a;为 PTP 事件安装处理程序第…

【深度学习】利用Java DL4J 训练金融投资组合模型

🧑 博主简介:CSDN博客专家,历代文学网(PC端可以访问:https://literature.sinhy.com/#/literature?__c=1000,移动端可微信小程序搜索“历代文学”)总架构师,15年工作经验,精通Java编程,高并发设计,Springboot和微服务,熟悉Linux,ESXI虚拟化以及云原生Docker和K8s…

支持向量机算法:原理、实现与应用

摘要&#xff1a; 本文深入探讨支持向量机&#xff08;Support Vector Machine&#xff0c;SVM&#xff09;算法&#xff0c;详细阐述其原理、数学模型、核函数机制以及在分类和回归问题中的应用方式。通过以 Python 和 C# 为例&#xff0c;展示 SVM 算法在不同编程环境下的具体…

STM32编码器接口及编码器测速模板代码

编码器是什么&#xff1f; 编码器是一种将角位移或者角速度转换成一连串电数字脉冲的旋转式传感 器&#xff0c;我们可以通过编码器测量到底位移或者速度信息。编码器从输出数据类型上 分&#xff0c;可以分为增量式编码器和绝对式编码器。 从编码器检测原理上来分&#xff0…

TCP连接过程中涉及到的状态转换

TCP连接过程中涉及到的状态转换 TCP 服务器和客户端都要有一定的数据结构来保存这个连接的信息。 在这个数据结构中其中就有一个属性叫做 “状态” 操作系统内核根据状态的不同&#xff0c;决定了当前应该干什么。(不会迷茫也不会混乱) LISTEN LISTEN状态&#xff0c;表示服务…

COCO数据集理解

COCO&#xff08;Common Objects in Context&#xff09;数据集是一个用于计算机视觉研究的广泛使用的数据集&#xff0c;特别是在物体检测、分割和图像标注等任务中。COCO数据集由微软研究院开发&#xff0c;其主要特点包括&#xff1a; 丰富的标签&#xff1a;COCO数据集包含…

github仓库自动同步到gitee

Github Actions是Github推出的自动化CI/CD的功能&#xff0c;我们将使用Github Actions让Github仓库同步到Gitee 同步的原理是利用 SSH 公私钥配对的方式拉取 Github 仓库的代码并推送到 Gitee 仓库中&#xff0c;所以我们需要以下几个步骤 生成 SSH 公私钥添加公钥添加私钥配…

【六足机器人】03步态算法

温馨提示&#xff1a;此部分内容需要较强的数学能力&#xff0c;包括但不限于矩阵运算、坐标变换、数学几何。 一、数学知识 1.1 正逆运动学&#xff08;几何法&#xff09; 逆运动学解算函数 // 逆运动学-->计算出三个角度 void inverse_caculate(double x, double y, …

Netty面试内容整理-编码实战相关问题

在 Netty 面试中,编码实战相关的问题会考察你的动手能力,具体包括 Netty 框架的使用、如何设计网络协议、如何处理一些常见的实际开发问题等。以下是一些常见的编码实战相关面试问题及要点: 如何实现一个简单的 Netty Echo 服务器? 一个 Echo 服务器是 Netty 编码的经典示例…

文化央企再一次声明

央企再次声明 中传国华&#xff08;北京&#xff09;科技有限公司&#xff0c;成立于2023年5月29日&#xff0c;原法定代表人曹忠喜&#xff0c;统一社会信用代码&#xff1a;91110117MACL4B9A91&#xff0c;我司中传世纪控股&#xff08;北京&#xff09;有限公司系该司的原股…

Ubuntu实时流量检测

nethogs启动 安装nethogs sudo apt install nethogs流量检测 sudo nethogs效果如下&#xff1a; 可以看到收发流量的进程PID&#xff0c;进程目录&#xff0c;发送设备&#xff0c;以及收发速率&#xff1b;但这里有个unkown TCP进程是什么呢? 可以用ps -e 列出操作前后的…

大数据新视界 -- 大数据大厂之 Hive 临时表与视图:灵活数据处理的技巧(上)(29 / 30)

&#x1f496;&#x1f496;&#x1f496;亲爱的朋友们&#xff0c;热烈欢迎你们来到 青云交的博客&#xff01;能与你们在此邂逅&#xff0c;我满心欢喜&#xff0c;深感无比荣幸。在这个瞬息万变的时代&#xff0c;我们每个人都在苦苦追寻一处能让心灵安然栖息的港湾。而 我的…

【C语言】二维数组前缀和

相信你是最棒哒&#xff01;&#xff01;&#xff01; 文章目录 问题描述 题目代码&#xff1a; 总结 问题描述 输入一个 &#x1d45b;n 行 &#x1d45a;m 列的整数矩阵&#xff0c;再输入 &#x1d45e;q 个询问&#xff0c;每个询问包含四个整数 &#x1d465;1,&#x…

使用脚本语言实现Lumerical官方案例——闪耀光栅(Blazed grating)(纯代码)(2)

接《使用脚本语言实现Lumerical官方案例——闪耀光栅(Blazed grating)(纯代码)(1)》 一、添加分析组 1.1 代码实现 #添加分析组 addanalysisgroup(); set("name", "grating_R"); set("x", 0); set("y", 2.5*um); addanalysisgrou…

车载测试技术栈

软件测试理论知识 了解软件测试的基本概念、流程和方法&#xff0c;包括测试需求分析、测试用例设计、测试执行、缺陷发现和修复等。 汽车行业知识 熟悉汽车行业的特点和规范&#xff0c;了解汽车的构造和工作原理&#xff0c;包括发动机、底盘、电气系统等。 通信协议知识 …

61 基于单片机的小车雷达避障及阈值可调

所有仿真详情导航&#xff1a; PROTEUS专栏说明-CSDN博客 目录 一、主要功能 二、硬件资源 三、主程序编程 四、资源下载 一、主要功能 基于51单片机&#xff0c;采用超声波传感器检测距离&#xff0c;通过LCD1602显示屏显示&#xff0c;三个按键&#xff0c;第一个按键是…

Linux基本命令---文件权限与用户管理

在Linux系统中&#xff0c;文件权限与用户管理是两个核心概念&#xff0c;它们共同维护着系统的安全性和稳定性。以下是如何在Linux系统中体验文件权限与用户管理的详细步骤&#xff1a; 一、用户管理 创建新用户 使用adduser命令可以创建新用户。例如&#xff0c;创建一个名为…

Ubuntu——extrepo添加部分外部软件源

extrepo 是一个用于 Ubuntu 和其他基于 Debian 的系统的工具&#xff0c;它的主要作用是简化和管理外部软件源&#xff08;repositories&#xff09;的添加和更新。通过使用 extrepo&#xff0c;用户可以方便地添加、删除和管理第三方软件源&#xff0c;而不需要手动编辑源列表…