windows C#-查询表达式基础(三)
select 子句
使用 select 子句可生成所有其他类型的序列。 简单 select 子句只生成类型与数据源中包含的对象相同的对象的序列。 在此示例中,数据源包含 Country 对象。 orderby 子句只按新顺序对元素进行排序,而 select 子句生成重新排序的 Country 对象的序列。
IEnumerable<Country> sortedQuery =from country in countriesorderby country.Areaselect country;
select 子句可以用于将源数据转换为新类型的序列。 此转换也称为投影。 在下面的示例中,select 子句对只包含原始元素中的字段子集的匿名类型序列进行投影。 新对象使用对象初始值设定项进行初始化。
var queryNameAndPop =from country in countriesselect new{Name = country.Name,Pop = country.Population};
因此,在此示例中,var 是必需的,因为查询会生成匿名类型。
使用“into”延续
可以在 select 或 group 子句中使用 into 关键字创建存储查询的临时标识符。 如果在分组或选择操作之后必须对查询执行额外查询操作,则可以使用 into 子句。 在下面的示例中,countries 按 1000 万范围,根据人口进行分组。 创建这些组之后,更多子句会筛选出一些组,然后按升序对组进行排序。 若要执行这些额外操作,需要由 countryGroup 表示的延续。
// percentileQuery is an IEnumerable<IGrouping<int, Country>>
var percentileQuery =from country in countrieslet percentile = (int)country.Population / 10_000_000group country by percentile into countryGroupwhere countryGroup.Key >= 20orderby countryGroup.Keyselect countryGroup;// grouping is an IGrouping<int, Country>
foreach (var grouping in percentileQuery)
{Console.WriteLine(grouping.Key);foreach (var country in grouping){Console.WriteLine(country.Name + ":" + country.Population);}
}
筛选、排序和联接
在开头 from 子句与结尾 select 或 group 子句之间,所有其他子句(where、join、orderby、from、let)都是可选的。 任何可选子句都可以在查询正文中使用零次或多次。
where 子句
使用 where 子句可基于一个或多个谓词表达式,从源数据中筛选出元素。 以下示例中的 where 子句具有一个谓词及两个条件。
IEnumerable<City> queryCityPop =from city in citieswhere city.Population is < 200000 and > 100000select city;
orderby 子句
使用 orderby 子句可按升序或降序对结果进行排序。 还可以指定次要排序顺序。 下面的示例使用 Area 属性对 country 对象执行主要排序。 然后使用 Population 属性执行次要排序。
IEnumerable<Country> querySortedCountries =from country in countriesorderby country.Area, country.Population descendingselect country;
ascending 关键字是可选的;如果未指定任何顺序,则它是默认排序顺序。
join 子句
使用 join 子句可基于每个元素中指定的键之间的相等比较,将一个数据源中的元素与另一个数据源中的元素进行关联和/或合并。 在 LINQ 中,联接操作是对元素属于不同类型的对象序列执行。 联接了两个序列之后,必须使用 select 或 group 语句指定要存储在输出序列中的元素。 还可以使用匿名类型将每组关联元素中的属性合并到输出序列的新类型中。 下面的示例关联其 Category 属性与 categories 字符串数组中一个类别匹配的 prod 对象。 筛选出其 Category 不与 categories 中的任何字符串匹配的产品。select 语句会投影其属性取自 cat 和 prod 的新类型。
var categoryQuery =from cat in categoriesjoin prod in products on cat equals prod.Categoryselect new{Category = cat,Name = prod.Name};
还可以通过使用 into 关键字将 join 操作的结果存储到临时变量中来执行分组联接。
let 子句
使用 let 子句可将表达式(如方法调用)的结果存储在新范围变量中。 在下面的示例中,范围变量 firstName 存储 Split 返回的字符串数组的第一个元素。
string[] names = ["Svetlana Omelchenko", "Claire O'Donnell", "Sven Mortensen", "Cesar Garcia"];
IEnumerable<string> queryFirstNames =from name in nameslet firstName = name.Split(' ')[0]select firstName;foreach (var s in queryFirstNames)
{Console.Write(s + " ");
}//Output: Svetlana Claire Sven Cesar
查询表达式中的子查询
查询子句本身可能包含查询表达式,这有时称为子查询。 每个子查询都以自己的 from 子句开头,该子句不一定指向第一个 from 子句中的相同数据源。 例如,下面的查询演示在 select 语句用于检索分组操作结果的查询表达式。
var queryGroupMax =from student in studentsgroup student by student.Year into studentGroupselect new{Level = studentGroup.Key,HighestScore = (from student2 in studentGroupselect student2.ExamScores.Average()).Max()};