LINQ查询结果分析

本文向大家介绍LINQ查询结果,可能好多人还不了解LINQ查询结果,没有关系,看完本文你肯定有不少收获,希望本文能教会你更多东西。

使用LINQ查询结果

如果查询结果是强类型的,如string[],List等,就可以不用var类型,而是使用合适的 IEnumerable或IEnumerable(因为IEnumerable也扩展了IEnumerable)类型。

 
 
 
  1. class Program  
  2. {  
  3. static void Main(string[] args)  
  4. {  
  5. Console.WriteLine("***** LINQ Transformations *****"n");  
  6. IEnumerable subset = GetStringSubset();  
  7. foreach (string item in subset)  
  8. {  
  9. Console.WriteLine(item);  
  10. }  
  11. Console.ReadLine();  
  12. }  
  13. static IEnumerable GetStringSubset()  
  14. {  
  15. string[] currentVideoGames = {"Morrowind", "BioShock",  
  16. "Half Life 2: Episode 1", "The Darkness",  
  17. "Daxter", "System Shock 2"};  
  18. // Note subset is an IEnumerable compatible object.  
  19. IEnumerable subset = from g in currentVideoGames  
  20. where g.Length > 6  
  21. orderby g  
  22. select g;  
  23. return subset;  
  24. }  

使用LINQ查询结果的分页处理:

 
 
 
  1. var custTotalOrders = from c in db.D_WorkCenter  
  2. //join o in db.Orders  
  3. //on c.CustomerID equals o.CustomerID into custOrders  
  4. //from o in custOrders  
  5. select new  
  6. {  
  7. WorkCenterID = c.WorkCenterID,  
  8. WorkCenterName = c.WorkCenterName  
  9. //OrderTotal = o.Order_Details.Sum(d => d.UnitPrice * d.Quantity)  

【编辑推荐】

  1. Linq to SQL学习经验
  2. Linq隐式类型化局部变量
  3. Linq匿名类型简单概述
  4. Linq Lambda表达式剖析
  5. Linq对象初始值浅谈

当前题目:LINQ查询结果分析
网址分享:http://www.csdahua.cn/qtweb/news42/453542.html

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

广告

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