C#Linq的使用

來源:互聯網
上載者:User

標籤:

 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Xml.Linq; 7 using System.Collections; 8  9 10 namespace LinqDemos11 {12     class Program13     {14         static void Main(string[] args)15         {16             int[] num = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 1000 };17             var n = from number in num where number % 2 == 0 select number;18             foreach (int a in n)19             {20                 Console.WriteLine(a.ToString());21             }22             ArrayList arr = new ArrayList();23             arr.Add(new Student { Name = "張三", Age = 12, Addresss = "莆田" });24             arr.Add(new Student { Name = "王三", Age = 12, Addresss = "福州" });25             var data = from Student stu in arr where stu.Name == "王三" select stu;26             foreach (Student item in data)27             {28                 Console.WriteLine(item.Name);29             }30         }31     }32     public class Student33     {34         public string Name { get; set; }35         public int Age { get; set; }36         public string Addresss { get; set; }37 38     }39 40 }

Linq是一種物件導向的查詢方式,它和SQL語句及其類似,sql寫法 select * from 表  Linq寫法 from n in 資料來源 select n;

為什麼不跟sql寫法一樣將select一同寫在語句的開頭呢?主要是當時做IDE時考慮到智能感應,將select寫在語句頭不利於編程環境的智能感應,其中的奧妙自行百度理解哈,這邊不詳講

Linq的查詢對象可以是所有實現了IEnumerable的類型,比如數組,資料庫集合(DataTable,DataSet...),Arraylist,List,

用Linq這種寫法對於我們來說更加的直觀,當然你也可以使用foreach和for。相對於這兩種查詢語句,Linq執行的效率和效能要優勝,

Linq>foreach>for

 

C#Linq的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.