Linq基本语法概述

在向大家详细介绍Linq基本语法之前,首先让大家了解下调用Enumberalbe扩展函数,然后全面介绍Linq基本语法。

创新互联公司专业为企业提供河南网站建设、河南做网站、河南网站设计、河南网站制作等企业网站建设、网页设计与制作、河南企业网站模板建站服务,10年河南做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

Linq基本语法

 
 
 
  1. var result = from item in container orderby value ascending/descending select item; 

1、获取全部记录

 
 
 
  1. var allCars = from c in myCars select c; 

2、只获取字段名称

 
 
 
  1. var names = from c in myCars select c.PetName; 

这里names就是隐式类型的变量。

3、使用Enumerable.Distinct()

 
 
 
  1. var makes = (from c in myCars select c.Make).Distinct(); 

4、即可以在定义的时候调用Enumberalbe扩展函数

 
 
 
  1. var names = from c in myCars select c.PetName;  
  2. foreach (var n in names)  
  3. {  
  4. Console.WriteLine("Name: {0}", n);  

也可以在兼容的数组类型上调用

 
 
 
  1. var makes = from c in myCars select c.Make;  
  2. Console.WriteLine("Distinct makes:");  
  3. foreach (var m in makes.Distinct())  
  4. {  
  5. Console.WriteLine("Make: {0}", m);  
 
 
 
  1. // Now get only the BMWs.  
  2. var onlyBMWs = from c in myCars where c.Make == "BMW" select c; 
 
 
 
  1. // Get BMWs going at least 100 mph.  
  2. var onlyFastBMWs = from c in myCars  
  3. where c.Make == "BMW" && c.Speed >= 100  
  4. select c; 

5、生成新的数据类型(投影)

 
 
 
  1. var makesColors = from c in myCars select new {c.Make, c.Color}; 

6、Reverse()

或者

 
 
 
  1. var subset = (from c in myCars select c).Reverse();  
  2. foreach (Car c in subset)  
  3. {  
  4. Console.WriteLine("{0} is going {1} MPH", c.PetName, c.Speed);  

7、排序

默认是ascending

 
 
 
  1. // Order all the cars by PetName.  
  2. var subset = from c in myCars orderby c.PetName select c;  
  3. // Now find the cars that are going less than 55 mph,  
  4. // and order by descending PetName  
  5. subset = from c in myCars  
  6. where c.Speed > 55 orderby c.PetName descending select c; 

默认顺序时也可以明确指明

 
 
 
  1. var subset = from c in myCars  
  2. orderby c.PetName ascending select c; 

8、Enumerable.Except()
两个IEnumerable兼容的对象的差集

 
 
 
  1. static void GetDiff()  
  2. {  
  3. List myCars = new List 
  4. { "Yugo", "Aztec", "BMW"};  
  5. List yourCars = new List 
  6. { "BMW", "Saab", "Aztec" };  
  7. var carDiff =(from c in myCars select c)  
  8. .Except(from c2 in yourCars select c2);  
  9. Console.WriteLine("Here is what you don't have, but I do:");  
  10. foreach (string s in carDiff)  
  11. Console.WriteLine(s); // Prints Yugo.  

以上介绍Linq基本语法

分享标题:Linq基本语法概述
文章源于:http://www.shufengxianlan.com/qtweb/news15/26065.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联