LINQ中的過濾運(yùn)算符根據(jù)某些給定的標(biāo)準(zhǔn)過濾序列(集合)。
下表列出了LINQ中所有可用的過濾運(yùn)算符。
篩選運(yùn)算符 | 描述 |
---|---|
Where | 根據(jù)謂詞函數(shù)從集合中返回值。 |
OfType | 根據(jù)指定類型返回集合中的值。 然而,它取決于它們是否能夠向指定類型轉(zhuǎn)換。 |
Where運(yùn)算符(Linq擴(kuò)展方法)基于給定的條件表達(dá)式過濾集合并返回新集合??梢詫?biāo)準(zhǔn)指定為lambda表達(dá)式或Func委托類型。
Where擴(kuò)展方法有以下兩個(gè)重載。兩種重載方法都接受Func委托類型參數(shù)。一個(gè)重載需要Func <TSource,bool>輸入?yún)?shù),第二個(gè)重載方法需要Func <TSource,int,bool>輸入?yún)?shù),其中int用于索引:
public static IEnumerable<TSource> Where<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate); public static IEnumerable<TSource> Where<TSource>(this IEnumerable<TSource> source, Func<TSource, int, bool> predicate);
下面的查詢示例使用Where運(yùn)算符從給定的集合(序列)中篩選出青少年的學(xué)生。它使用lambda表達(dá)式作為謂詞函數(shù)。
IList<Student> studentList = new List<Student>() { new Student() { StudentID = 1, StudentName = "John", Age = 13} , new Student() { StudentID = 2, StudentName = "Moin", Age = 21 } , new Student() { StudentID = 3, StudentName = "Bill", Age = 18 } , new Student() { StudentID = 4, StudentName = "Ram" , Age = 20} , new Student() { StudentID = 5, StudentName = "Ron" , Age = 15 } }; var filteredResult = from s in studentList where s.Age > 12 && s.Age < 20 select s.StudentName;
Dim studentList = New List(Of Student) From { New Student() With {.StudentID = 1, .StudentName = "John", .Age = 13}, New Student() With {.StudentID = 2, .StudentName = "Moin", .Age = 21}, New Student() With {.StudentID = 3, .StudentName = "Bill", .Age = 18}, New Student() With {.StudentID = 4, .StudentName = "Ram", .Age = 20}, New Student() With {.StudentID = 5, .StudentName = "Ron", .Age = 15} } Dim filteredResult = From s In studentList Where s.Age > 12 And s.Age < 20 Select s.StudentName
在上面的示例中,filteredResult 將在查詢執(zhí)行后包括以下學(xué)生。
John Bill Ron
在上面的示例查詢中,lambda表達(dá)式主體 s.Age > 12 && s.Age < 20 作為評(píng)估集合中每個(gè)學(xué)生的謂詞函數(shù)傳遞。Func<TSource, bool>
另外,您還可以將Func類型委托與匿名方法一起使用,作為如下的謂詞函數(shù)進(jìn)行傳遞(輸出是相同的):
Func<Student,bool> isTeenAger = delegate(Student s) { return s.Age > 12 && s.Age < 20; }; var filteredResult = from s in studentList where isTeenAger(s) select s;
你也可以通過Where()方法的重載調(diào)用任何與Func形參匹配的方法。
public static void Main() { var filteredResult = from s in studentList where isTeenAger(s) select s; } public static bool IsTeenAger(Student stud) { return stud.Age > 12 && stud.Age < 20; }
與查詢語法不同,您需要將整個(gè)lambda表達(dá)式作為謂詞函數(shù)傳遞,而不僅僅是LINQ方法語法中的表達(dá)式主體。
var filteredResult = studentList.Where(s => s.Age > 12 && s.Age < 20);
Dim filteredResult = studentList.Where(Function(s) s.Age > 12 And s.Age < 20 )
如上所述,Where擴(kuò)展方法還具有第二重載,其包括集合中當(dāng)前元素的索引。如果需要,可以在邏輯中使用該索引。
以下示例使用Where子句過濾出集合中的奇數(shù)元素,僅返回偶數(shù)元素。請(qǐng)記住,索引從零開始。
IList<Student> studentList = new List<Student>() { new Student() { StudentID = 1, StudentName = "John", Age = 18 } , new Student() { StudentID = 2, StudentName = "Steve", Age = 15 } , new Student() { StudentID = 3, StudentName = "Bill", Age = 25 } , new Student() { StudentID = 4, StudentName = "Ram" , Age = 20 } , new Student() { StudentID = 5, StudentName = "Ron" , Age = 19 } }; var filteredResult = studentList.Where((s, i) => { if(i % 2 == 0) // 如果是偶數(shù) return true; return false; }); foreach (var std in filteredResult) Console.WriteLine(std.StudentName);
John Bill Ron
您可以在單個(gè) LINQ 查詢中多次調(diào)用 Where() 擴(kuò)展方法。
var filteredResult = from s in studentList where s.Age > 12 where s.Age < 20 select s;
var filteredResult = studentList.Where(s => s.Age > 12).Where(s => s.Age < 20);
Where 用于根據(jù)給定標(biāo)準(zhǔn)過濾集合。
其中擴(kuò)展方法有兩種重載方法。使用第二個(gè)重載方法可以知道集合中當(dāng)前元素的索引。
方法語法需要Where擴(kuò)展方法中的整個(gè)lambda表達(dá)式,而查詢語法只需要表達(dá)式體。
在單個(gè)LINQ查詢中,多個(gè)Where擴(kuò)展方法有效。