博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LINQ系列:Linq to Object限制操作符
阅读量:6420 次
发布时间:2019-06-23

本文共 4056 字,大约阅读时间需要 13 分钟。

1. Where

  限制操作符Where用于过滤序列,按照提供的逻辑对序列中的数据进行过滤。Where可以出现多次。

1.1 原型定义

public static IEnumerable
Where
(this IEnumerable
source, Func
predicate);
public static IEnumerable
Where
(this IEnumerable
source, Func
predicate);

1.2 单个限制条件

var products = from p in context.Products               where p.UnitPrice > 10m               select p;
var products = context.Products    .Where(p => p.UnitPrice > 10m);
Func
filter = delegate(Product p) { return p.UnitPrice > 10m; };var query = context.Products .Where(filter) .Select(p => new { p.ProductID, p.ProductName });
// using System.Linq;int[] fibonacci = new int[] { 1, 1, 2, 3, 5, 8, 13, 21 };IEnumerable
query = Enumerable.Where(fibonacci, f => f > 5);query.ToList().ForEach(f =>{ Console.WriteLine(f);});

1.3 多个过滤条件

var products = from p in context.Products               where p.UnitPrice > 10m && p.ProductName.StartsWith("LINQ")               select p;
var products = context.Products    .Where(p => p.UnitPrice > 10m && p.ProductName.StartsWith("LINQ"));
var expr = context.Products    .Where(p => p.UnitPrice > 10m)    .Where(p => p.ProductName.StartsWith("LINQ"));

1.4 Lambda多参数表达式

int[] fibonacci = new int[] { 1, 1, 2, 3, 5, 8, 13, 21 };var expr = fibonacci.Where((f, index) => f > 1 && index > 3);foreach (var item in expr){    Console.WriteLine(item);}

1.5 自定义实现

  LINQ是在C#3.0出现的,在C#2.0及之前没有LINQ的支持,接下来为LINQ Where操作符的自定义实现。

  C#2.0实现方式:

public static IEnumerable
Where
(this IEnumerable
source, Func
predicate);
using System;using System.Collections.Generic;using System.Text;namespace Northwind.CustomLINQExtension{    public static class CustomLINQExtension    {        public delegate TResult Func
(T arg); public static IEnumerable
Where
(IEnumerable
source, Func
predicate) { foreach (TSource element in source) { if (predicate(element)) { yield return element; } } } }}
using System;using System.Collections.Generic;using System.Text;namespace Northwind.CustomLINQExtension{    class Program    {        static void Main(string[] args)        {            int[] fibonacci = new int[] { 1, 1, 2, 3, 5, 8, 13, 21 };            IEnumerable
expr = CustomLINQExtension.Where(fibonacci, (delegate(int i) { return i > 3; })); foreach (int item in expr) { Console.WriteLine(item); } } }}

  由于在C#2.0中没有扩展方法,调用实现的自定义扩展类需要使用类名。

  在C#3.0中增加了扩展方法,在C#3.0自定义LINQ Where限制条件,不使用系统LINQ自带。

using System;using System.Collections.Generic;using System.Text;namespace Northwind.CustomLINQExtension{    public static class CustomLINQExtension    {        public delegate TResult Func
(T arg); public static IEnumerable
Where
(this IEnumerable
source, Func
predicate) { foreach (TSource element in source) { if (predicate(element)) { yield return element; } } } }}
using System;using System.Collections.Generic;using System.Text;namespace Northwind.CustomLINQExtension{    class Program    {        static void Main(string[] args)        {            int[] fibonacci = new int[] { 1, 1, 2, 3, 5, 8, 13, 21 };            IEnumerable
expr = fibonacci.Where(delegate(int i) { return i > 3; }); foreach (int item in expr) { Console.WriteLine(item); } } }}

转载于:https://www.cnblogs.com/libingql/p/4040806.html

你可能感兴趣的文章
【Python】输出程序运行的百分比
查看>>
Ajax跨域问题的两种解决方法
查看>>
HUNAN Interesting Integers(爆力枚举)
查看>>
让WebRTC支持H264编解码
查看>>
Servlet之doPost获取表单参数
查看>>
Leet Code OJ 219. Contains Duplicate II [Difficulty: Easy]
查看>>
max(min)-device-width和max(min)-width的区别
查看>>
基于SmartThreadPool线程池技术实现多任务批量处理
查看>>
获取relatedTarget属性
查看>>
用外部物理路由器时与外部dhcp服务时怎样使用metadata服务(by quqi99)
查看>>
Ubuntu 16.04中XMind 8导致Java内存溢出的问题解决(硬盘卡死,桌面卡死)
查看>>
mysql中函数greatest 与MAX区别
查看>>
GreenDao3.0新特性解析(配置、注解、加密)
查看>>
spring 使用注解注入 list 或 map
查看>>
Ora2Pg的安装和使用
查看>>
A Basic Example of Threads Synchronization in Python, python中的线程同步示例
查看>>
CVE-2016-10191 FFmpeg RTMP Heap Buffer Overflow 漏洞分析及利用
查看>>
Must Know Tips/Tricks in Deep Neural Networks (by Xiu-Shen Wei)
查看>>
关于SVM(support vector machine)----支持向量机的一个故事
查看>>
GDB 常用命令 ***
查看>>