程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> LINQ學習筆記:元素操作符

LINQ學習筆記:元素操作符

編輯:關於ASP.NET

元素操作符

主要方法:

First, FirstOrDefault: 返回序列中的第一個元素, 可選地匹配一個斷言, 對應SQL語法為SELECT TOP 1 … ORDER BY …

Last, LastOrDefault: 返回序列中的最後一個元素, 可選地匹配一個斷言, 對應SQL語法為SELECT TOP 1 … ORDER BY … DESC

Single, SingleOrDefault: 同First / FirstOrDefault, 但是如果匹配操作一個, 則拋出異常

ElementAt, ElementAtOrDefault: 返回指定位置的元素

DefaultIfEmpty: 如果輸入序列沒有任何元素則返回Null或者default(TSource), 對應SQL語法為OUTER JOIN

如果輸入序列是空的或者沒有任何元素匹配斷言, 那些以“OrDefault”結尾的操作符方法返回default(TSource)而不是拋出異常

對於引用類型的元素, default(TSource) = null, 而對於值類型則是“blank” (通常是0)

First, Last, Single

參數列表:

源序列: IEnumerable

斷言(Predicate)可選: TSource => bool

以下的例子演示了First和Last的用法:

   1: int[] numbers  = { 1, 2, 3, 4, 5 };
   2:  
   3:   int first      = numbers.First();                  // 1
   4:  
   5:   int last       = numbers.Last();                   // 5
   6:  
   7:   int firstEven  = numbers.First (n => n % 2 == 0);  // 2
   8:  
   9: astEven   = numbers.Last  (n => n % 2 == 0);  // 4

 

以下的例子演示了First和FirstOrDefault的區別:

   1: // 拋出異常:
   2:  
   3: int firstBigError = numbers.First (n => n> 10);
   4:  
   5: // 返回0:
   6:  
   7: int firstBigNumber =numbers.FirstOrDefault(n => n > 10);

 

為了避免異常, Single精確要求只有一個元素匹配, SingleOrDefault要求0或1個元素匹配:

   1: int divisibleBy3 =
   2:  
   3:   numbers.Single (n => n % 3 == 0);  // 3
   4:  
   5: int divisibleBy2Error =
   6:  
   7:   numbers.Single (n=> n % 2 == 0);   // Error: 2 matches
   8:  
   9: int singleError =
  10:  
  11:   numbers.Single (n => n> 10);      // Error: no matches
  12:  
  13: int noMatches =
  14:  
  15:   numbers.SingleOrDefault(n => n > 10);       // 0
  16:  
  17: int divisibleBy2Error =
  18:  
  19:     numbers.SingleOrDefault (n => n % 2 ==0);   // Error

 

Single是元素操作族群裡面最挑剔的,而FirstOrDefault和LastOrDefault是最寬容的

在LINQ to SQL當中, Single經常被用於通過主鍵讀取表中的某一行:

   1: Customer cust =
   2:  
   3:     dataContext.Customers.Single (c => c.ID== 100);

 

ElementAt

參數列表:

源序列: IEnumerable

要返回的元素索引位置: int

ElementAt從源序列中挑選第nth個元素返回:

   1: int[] numbers  = { 1, 2, 3, 4, 5 };
   2:  
   3: int third      = numbers.ElementAt (2);         // 3
   4:  
   5: int tenthError = numbers.ElementAt (9);         // Error
   6:  
   7: int tenth      = numbers.ElementAtOrDefault (9);  // 0

 

對於Enumerable.ElementAt, 如果輸入序列實現了IList, 那麼它將會使用IList的所引器, 否則將會枚舉n次, 然後返回下一個元素. LINQ to SQL不支持ElementAt

DefaultIfEmpty

DefaultIfEmpty將空序列轉換成null或者default(). 這在編寫扁平的外部連接時經常使用, 待續!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved