linq中的转换操作符
这些转换操作符将集合转换成数组:IEnumerable、IList、IDictionary等。转换操作符是用来实现将输入对象的类型转变为序列的功能。名称以"As"开头的转换方法可更改源集合的静态类型但不枚举(延迟加载)此源集合。名称以"To"开头的方法可枚举(即时加载)源集合并将项放入相应的集合类型。
一、AsEnumerable操作符
所有实现了IEnumerable
例如:IQueryable
public static IEnumerable
看看下面的例子:
DataTable dt = new DataTable();
// 将dt先使用AsEnumerable()操作符进行转换,然后在调用Linq to Object 的where方法var list= dt.AsEnumerable().Where(p => p.Name.length > 0);
二、ToArray操作符
ToArray操作符可以在IEnumerable
public T[] ToArray();
看下面的例子:
List
三、ToDictionary操作符
ToDictionary操作符根据指定的键选择器函数,从IEnumerable
开看下面的例子。
先定义Category类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConvertOperation{public class Category{public int Id { get;
set;
}public string CategoryName { get;
set;
}public DateTime CreateTime { get;
set;
}}}
调用:
List
结果:
文章图片
注意:
看下面的例子:
var dict = listCategory.ToDictionary(c=>c.Id);
foreach (var item in dict){Console.WriteLine($"key:{item.Key},Id:{dict[item.Key].Id},CategoryName:{dict[item.Key].CategoryName},CreateTime:{dict[item.Key].CreateTime}");
}
在程序运行时打断点,查询value的类型:
文章图片
从截图中可以看出:这时value的类型是Category类型。其输出结果如下:
文章图片
四、ToList操作符
ToList操作符可以在IEnumerable
public static List
来看下面的例子:
int[] intArray = { 1, 2, 3, 56, 78, 34 };
List
五、ToLookUp操作符
ToLookUp操作符将创建一个LookUp
public static ILookup
从方法定义中可以看出:ToLookUp的value值的类型和集合中元素的类型一致。如果一个key对应多个value值,那么value会是TSource类型的集合。
来看下面的例子。
先定义Product类,Product类中的分类ID可以对应多个产品,其定义如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConvertOperation{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;
}}}
在方法中调用:
List listProduct = new List(){new Product(){Id=1,CategoryId=1, Name="C#高级编程第10版", Price=100.67,CreateTime=DateTime.Now},new Product(){Id=2,CategoryId=1, Name="Redis开发和运维", 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="高等数学", Price=97,CreateTime=DateTime.Now.AddMonths(-1)},new Product(){Id=5,CategoryId=6, Name="国家宝藏", Price=52.8,CreateTime=DateTime.Now.AddMonths(-1)}};
var list = listProduct.ToLookup(p => p.CategoryId, p => p.Name);
foreach (var item in list){Console.WriteLine($"key:{item.Key}");
foreach (var p in item){Console.WriteLine($"value:{p}");
}}
结果:
文章图片
注意:
【linq中的转换操作符】看下面的例子:
var list1 = listProduct.ToLookup(p => p.CategoryId);
foreach (var item in list1){Console.WriteLine($"key:{item.Key}");
foreach (var p in item){Console.WriteLine($"Id:{p.Id},CategoryId:{p.CategoryId},Name:{p.Name},CreateTime:{p.CreateTime}");
}}
程序运行时打断点,查看value值的类型:
文章图片
从上面的截图中能够看出:这时value的类型是Product类型。运行结果如下:
文章图片
六、Cast操作符
Cast操作符用于将一个类型为IEnumerable的集合对象转换为IEnumerable
public static IEnumerable
来看下面的例子:
ArrayList arrayList = new ArrayList();
arrayList.Add(1);
arrayList.Add(2);
arrayList.Add(3);
//非泛型转换成泛型var list = arrayList.Cast
结果:
文章图片
注意:
ArrayList arrayList = new ArrayList();
arrayList.Add(1);
arrayList.Add("2");
arrayList.Add(3);
//非泛型转换成泛型var list = arrayList.Cast
程序运行结果:
文章图片
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
推荐阅读
- linq中的元素操作符
- linq中的串联操作符
- linq中的聚合操作符
- Linux|彻底搞懂linux中的权限【详解】
- 面试Spring中的bean线程是否安全及原因
- linq中的分组操作符
- linq中的连接操作符
- python|在pandas / python中的数据框中合并两列文本
- Python 获取字典中的第一个键
- react中的双向绑定你真的了解吗