LINQ从方法中返回查询
生活随笔
收集整理的這篇文章主要介紹了
LINQ从方法中返回查询
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
此示例演示如何以返回值和輸出參數的形式從方法中返回查詢。
任何查詢的類型都必須為 IEnumerable 或 IEnumerable<(Of <(T>)>),或一種派生類型(如 IQueryable<(Of <(T>)>))。因此,返回查詢的方法的任何返回值或輸出參數也必須具有該類型。如果某個方法將查詢具體化為具體的 List<(Of <(T>)>) 或 Array 類型,則認為該方法在返回查詢結果(而不是查詢本身)。仍然能夠編寫或修改從方法中返回的查詢變量。
在下面的示例中,第一個方法以返回值的形式返回查詢,第二個方法以輸出參數的形式返回查詢。請注意,在這兩種情況下,返回的都是查詢,而不是查詢結果。
class MQ { IEnumerable<string> QueryMethod1(ref int[] ints) { var intsToStrings = from i in ints where i > 4 select i.ToString(); return intsToStrings; } ? static void Main() { MQ app = new MQ(); ? int[] nums = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; ? var myQuery = app.QueryMethod1(ref nums); ? ? //execute myQuery foreach (string s in myQuery) { Console.WriteLine(s); } ? //modify myQuery myQuery = (from str in myQuery orderby str descending select str). Take(3); ? // Executing myQuery after more // composition Console.WriteLine("After modification:"); foreach (string s in myQuery) { Console.WriteLine(s); } ? // Keep console window open in debug mode. Console.WriteLine("Press any key to exit."); Console.ReadKey(); } }結果為:
5 6 7 8 9 After modification: 9 8 7 Press any key to exit.轉載于:https://www.cnblogs.com/superfang/archive/2008/07/01/1233535.html
總結
以上是生活随笔為你收集整理的LINQ从方法中返回查询的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 再学 GDI+[79]: 区域(8) -
- 下一篇: 初探WCF 如何在配置文件中指定Ad