Lnaguage Intergrated Query(Linq) 集成查询语言

作者:追风剑情 发布于:2018-2-22 15:27 分类:C#

示例一

官方文档 https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/keywords/query-keywords

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Test10
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. // 定义数据源
  14. int[] scores = new int[] { 97, 92, 81, 60 };
  15.  
  16. // 定义查询语句
  17. IEnumerable<int> scoreQuery =
  18. from score in scores
  19. let addscore = score + 100 //存储子表达式结果
  20. where score > 80
  21. orderby score ascending //ascending(升序) descending(降序)
  22. select addscore * 2;
  23.  
  24. // 执行查询语句
  25. foreach (int i in scoreQuery)
  26. {
  27. Console.Write(i + " ");
  28. }
  29.  
  30. Console.WriteLine();
  31.  
  32. // 定义数据源
  33. List<Student> students = new List<Student>()
  34. {
  35. new Student(){ First="A1", Last="B1", ID=1 },
  36. new Student(){ First="A2", Last="B2", ID=2 },
  37. new Student(){ First="A3", Last="B3", ID=3 },
  38. new Student(){ First="A4", Last="B4", ID=4 }
  39. };
  40.  
  41. // 定义查询语句
  42. var studentQuery2 =
  43. from student in students
  44. group student by student.Last[1] into g
  45. orderby g.Key descending
  46. select g;
  47.  
  48. // 执行查询语句
  49. Console.WriteLine("--------group into-----");
  50. foreach (var i in studentQuery2)
  51. {
  52. Console.WriteLine(string.Format("Key={0}", i.Key));
  53. foreach (var j in i)
  54. {
  55. Console.WriteLine(string.Format("First={0}, Last={1}", j.First, j.Last));
  56. }
  57. }
  58.  
  59. // 定义查询语句
  60. IEnumerable<ScoreInfo> studentQuery8 =
  61. from student in students
  62. where student.ID > 2
  63. select new ScoreInfo //返回新的数据结构
  64. {
  65. Average = 80,
  66. ID = student.ID
  67. };
  68.  
  69. // 执行查询语句
  70. Console.WriteLine("--------select-----");
  71. foreach (ScoreInfo i in studentQuery8)
  72. {
  73. Console.WriteLine(string.Format("ID={0}, Average={1}", i.ID, i.Average));
  74. }
  75.  
  76. // 定义数据源
  77. List<Category> categories = new List<Category>()
  78. {
  79. new Category(){ID = 1, Name="C1"},
  80. new Category(){ID = 2, Name="C2"}
  81. };
  82.  
  83. List<Product> products = new List<Product>()
  84. {
  85. new Product(){CategoryID=1, Name="P1"},
  86. new Product(){CategoryID=2, Name="P2"},
  87. new Product(){CategoryID=3, Name="P3"}
  88. };
  89.  
  90. // 定义查询语句
  91. var innerJoinQuery =
  92. from category in categories
  93. join prod in products on category.ID equals prod.CategoryID //内部联接查询
  94. select new { ProductName = prod.Name, Category = category.Name };
  95.  
  96. // 执行查询语句
  97. Console.WriteLine("--------join in on equals-----");
  98. foreach (var i in innerJoinQuery)
  99. {
  100. Console.WriteLine(string.Format("ProductName={0}, Category={1}", i.ProductName, i.Category));
  101. }
  102.  
  103. Console.Read();
  104. }
  105. }
  106.  
  107. public class Student
  108. {
  109. public string First { get; set; }
  110. public string Last { get; set; }
  111. public int ID { get; set; }
  112. }
  113.  
  114. public class ScoreInfo
  115. {
  116. public double Average { get; set; }
  117. public int ID { get; set; }
  118. }
  119.  
  120. public class Category
  121. {
  122. public int ID { get; set; }
  123. public string Name { get; set; }
  124. }
  125.  
  126. public class Product
  127. {
  128. public int CategoryID { get; set; }
  129. public string Name { get; set; }
  130. }
  131. }


运行测试

11111.jpg

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号