系列目录    【已更新最新开发文章,点击查看详细】 <https://www.cnblogs.com/SavionZhang/p/11229640.html>
标准查询运算符 是组成 LINQ 模式的方法。 这些方法中的大多数都作用于序列;其中序列指其类型实现 IEnumerable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.ienumerable-1>
 接口或 IQueryable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.iqueryable-1> 接口的对象。 
标准查询运算符提供包括筛选、投影、聚合、排序等在内的查询功能。

共有两组 LINQ 标准查询运算符,一组作用于类型 IEnumerable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.ienumerable-1>
 的对象,另一组作用于类型 IQueryable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.iqueryable-1> 的对象。 
构成每个集合的方法分别是 Enumerable
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable> 和 Queryable
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.queryable> 类的静态成员。
这些方法被定义为作为方法运行目标的类型的扩展方法。 这意味着可以使用静态方法语法或实例方法语法来调用它们。

此外,多个标准查询运算符方法作用于那些基于 IEnumerable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.ienumerable-1>
 或 IQueryable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.iqueryable-1> 的类型外的类型。 
Enumerable <https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable>
 类型定义了两种这样的方法,这两种方法都作用于类型 IEnumerable
<https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.ienumerable>
 的对象。这些方法(Cast<TResult>(IEnumerable)
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable.cast#System_Linq_Enumerable_Cast__1_System_Collections_IEnumerable_>
 和 OfType<TResult>(IEnumerable)
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable.oftype#System_Linq_Enumerable_OfType__1_System_Collections_IEnumerable_>
)均允许在 LINQ 模式中查询非参数化或非泛型集合。 这些方法通过创建一个强类型的对象集合来实现这一点。Queryable
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.queryable> 类定义了两种类似的方法 
Cast<TResult>(IQueryable)
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.queryable.cast#System_Linq_Queryable_Cast__1_System_Linq_IQueryable_>
 和 OfType<TResult>(IQueryable)
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.queryable.oftype#System_Linq_Queryable_OfType__1_System_Linq_IQueryable_>
,这两种方法都作用于类型 Queryable
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.queryable> 的对象。

各个标准查询运算符在执行时间上有所不同,具体情况取决于它们是返回单一值还是值序列。 返回单一实例值的这些方法(例如 Average
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable.average> 和 
Sum <https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable.sum>
)立即执行。 返回序列的方法会延迟查询执行,并返回一个可枚举的对象。

对于在内存中集合上运行的方法(即扩展 IEnumerable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.ienumerable-1>
 的那些方法),返回的可枚举对象将捕获传递到方法的参数。 在枚举该对象时,将使用查询运算符的逻辑,并返回查询结果。

与之相反,扩展 IQueryable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.iqueryable-1>
 的方法不会实现任何查询行为,但会生成一个表示要执行的查询的表达式树。 源 IQueryable<T>
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.iqueryable-1> 对象执行查询处理。

可以在一个查询中将对查询方法的调用链接在一起,这就使得查询的复杂性可能会变得不确定。

下面的代码示例演示如何使用标准查询运算符来获取有关序列的信息。
string sentence = "the quick brown fox jumps over the lazy dog"; //
将字符串拆分为单个单词以创建集合 string[] words = sentence.Split(' '); // 使用查询表达式语法 var query =
from word in words group word.ToUpper() by word.Length into gr orderby gr.Key
select new { Length = gr.Key, Words = gr }; // 使用基于方法的查询语法。 var query2 = words.
GroupBy(w=> w.Length, w => w.ToUpper()). Select(g => new { Length = g.Key,
Words = g }). OrderBy(o => o.Length); foreach (var obj in query) {
Console.WriteLine("Words of length {0}:", obj.Length); foreach (string word in
obj.Words) Console.WriteLine(word); }// 输出: // Words of length 3: // THE // FOX
// THE // DOG // Words of length 4: // OVER // LAZY // Words of length 5: //
QUICK// BROWN // JUMPS
扩展标准查询运算符

通过创建适合于目标域或技术的特定于域的方法,可以增大标准查询运算符的集合。 
也可以用自己的实现来替换标准查询运算符,这些实现提供诸如远程计算、查询转换和优化之类的附加服务。 有关示例,请参见 AsEnumerable
<https://docs.microsoft.com/zh-cn/dotnet/api/system.linq.enumerable.asenumerable>


其他技术请参考

对数据进行排序 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/sorting-data>

集运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/set-operations>

筛选数据 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/filtering-data>

限定符运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/quantifier-operations>

投影运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/projection-operations>

数据分区 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/partitioning-data>

联接运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/join-operations>

数据分组 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/grouping-data>

生成运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/generation-operations>

相等运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/equality-operations>

元素运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/element-operations>

转换数据类型 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/converting-data-types>

串联运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/concatenation-operations>

聚合运算 (C#)
<https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/aggregation-operations>

 
系列目录    【已更新最新开发文章,点击查看详细】
<https://www.cnblogs.com/SavionZhang/p/11229640.html>

友情链接
KaDraw流程图
API参考文档
OK工具箱
云服务器优惠
阿里云优惠券
腾讯云优惠券
华为云优惠券
站点信息
问题反馈
邮箱:[email protected]
QQ群:637538335
关注微信