C语言 百分网手机站

c#查询关键字之into的使用

时间:2020-10-04 11:01:27 C语言 我要投稿

c#查询关键字之into的使用

  引导语:c#借鉴了Delphi的一个特点,与COM(组件对象模型)是直接集成的,而且是微软公司 .NET windows网络框架的.主角。以下是小编整理的c#查询关键字之into的使用,欢迎参考阅读!

  可以使用 into 上下文关键字创建一个临时标识符,以便将 group、join 或 select 子句的结果存储到新的标识符中。此标识符本身可以是附加查询命令的生成器。在 group 或 select 子句中使用新标识符的用法有时称为“延续”。

  示例

  下面的示例演示使用 into 关键字来启用临时标识符 fruitGroup,该标识符具有推断类型 IGrouping。通过使用该标识符,可以对每个组调用 Count 方法,并且仅选择那些包含两个或更多个单词的组。

  C# 

  class IntoSample1

  {

  static void Main()

  {

  // Create a data source.

  string[] words = { "apples", "blueberries", "oranges", "bananas", "apricots"};

  // Create the query.

  var wordGroups1 =

  from w in words

  group w by w[0] into fruitGroup

  where fruitGroup.Count() >= 2

  select new { FirstLetter = fruitGroup.Key, Words = fruitGroup.Count() };

  // Execute the query. Note that we only iterate over the groups,

  // not the items in each group

  foreach (var item in wordGroups1)

  {

  Console.WriteLine(" {0} has {1} elements.", item.FirstLetter, item.Words);

  }

  // Keep the console window open in debug mode

  Console.WriteLine("Press any key to exit.");

  Console.ReadKey();

  }

  }

  /* Output:

  a has 2 elements.

  b has 2 elements.

  */

  仅当希望对每个组执行附加查询操作时,才需要在 group 子句中使用 into。

【c#查询关键字之into的使用】相关文章:

c#查询关键字之group子句的使用12-04

c#关键字查询之select 子句运用11-28

c#查询关键字之join 子句运用方法12-10

c#运算符关键字is的使用12-16

c#查询关键字where 子句的运用11-24

c#查询关键字from 子句的用法11-18

java的import关键字的使用12-08

c#中预处理指令#if的使用10-30

运算符关键字as的使用12-15