在C#中,where
關鍵字用于在LINQ查詢中指定一個或多個篩選條件。它可以用于篩選集合中的元素,只返回滿足指定條件的元素。
where
關鍵字的基本語法是:
var result = from item in collection
where condition
select item;
或者使用方法語法:
var result = collection.Where(item => condition);
其中,item
表示集合中的每個元素,condition
是一個布爾表達式,用于篩選元素。
以下是一些使用where
的示例:
// 從整數集合中篩選出大于5的元素
var numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
var result = numbers.Where(n => n > 5);
// 從字符串數組中篩選出長度大于等于5且以大寫字母開頭的字符串
var strings = new string[] { "Apple", "banana", "cherry", "Orange", "grape" };
var result = strings.Where(s => s.Length >= 5 && char.IsUpper(s[0]));
// 從自定義對象集合中篩選出滿足特定條件的對象
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
var people = new List<Person>
{
new Person { Name = "Alice", Age = 25 },
new Person { Name = "Bob", Age = 30 },
new Person { Name = "Charlie", Age = 35 }
};
var result = people.Where(p => p.Age > 30);
這些示例中,where
關鍵字被用于篩選出滿足特定條件的元素,并將它們放入一個新的集合中。