荟萃馆

位置:首页 > 计算机 > C语言

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

C语言1.53W

引导语:所谓关键字,就是使用的搜索关键词,技巧的输入您的关键词,对搜索内容的准确有很大的帮助以下是小编整理的c#查询关键字from 子句的用法,欢迎参考阅读!

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

查询表达式必须以 from 子句开头。另外,查询表达式还可以包含子查询,子查询也是以 from 子句开头。from 子句指定以下内容:

  将对其运行查询或子查询的数据源。

一个本地范围变量,表示源序列中的每个元素。

范围变量和数据源都是强类型。from 子句中引用的数据源的类型必须为 IEnumerable、IEnumerable<(Of <(t>)>) 或一种派生类型(如 IQueryable<(Of <(t>)>))。

在下面的示例中,numbers 是数据源,而 num 是范围变量。请注意,这两个变量都是强类型,即使使用了 var 关键字也是如此。

C#

class LowNums

{

static void Main()

{

// A simple data source.

int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };

// Create the query.

// lowNums is an IEnumerable

var lowNums = from num in numbers

where num < 5

select num;

// Execute the query.

foreach (int i in lowNums)

{

e(i + " ");

}

}

}

// Output: 4 1 3 2 0

  范围变量

如果数据源实现了 IEnumerable<(Of <(t>)>),则编译器可以推断范围变量的类型。例如,如果数据源的类型为 IEnumerable,则推断出范围变量的类型为 Customer。仅当数据源是非泛型 IEnumerable 类型(如 ArrayList)时,才必须显式指定数据源类型。有关更多信息,请参见 如何:使用 LINQ 查询 ArrayList。

在上一个示例中,num 被推断为 int 类型。由于范围变量是强类型,因此可以对其调用方法或者在其他操作中使用它。例如,可以不编写 select num,而编写 select ring() 使查询表达式返回一个字符串序列而不是整数序列。或者,也可以编写 select n + 10 使表达式返回序列 14、11、13、12、10。有关更多信息,请参见 select 子句(C# 参考)。

范围变量类似于 foreach 语句中的迭代变量,只是两者之间有一个非常重要的.区别:范围变量从不实际存储来自数据源的数据。范围变量只是提供了语法上的便利,使查询能够描述执行查询时将发生的事情。有关更多信息,请参见 LINQ 查询介绍。

  复合 from 子句

在某些情况下,源序列中的每个元素本身可能是序列,也可能包含序列。例如,数据源可能是一个 IEnumerable,其中,序列中的每个 Student 对象都包含一个测验得分列表。若要访问每个 Student 元素中的内部列表,可以使用复合 from 子句。该技术类似于使用嵌套的 foreach 语句。可以向任一 from 子句中添加 where 或 orderby 子句来筛选结果。下面的示例演示了一个 Student 对象序列,其中每个对象都包含一个表示测验得分的内部整数 List。为了访问该内部列表,此示例使用了复合 from 子句。如有必要,可在两个 from 子句之间再插入子句。

C#

class CompoundFrom

{

// The element type of the data source.

public class Student

{

public string LastName { get; set; }

public ListScores {get; set;}

}

static void Main()

{

// Use a collection initializer to create the data source. Note that

// each element in the list contains an inner sequence of scores.

Liststudents = new List

{

new Student {LastName="Omelchenko", Scores= new List{97, 72, 81, 60}},

new Student {LastName="O'Donnell", Scores= new List{75, 84, 91, 39}},

new Student {LastName="Mortensen", Scores= new List{88, 94, 65, 85}},

new Student {LastName="Garcia", Scores= new List{97, 89, 85, 82}},

new Student {LastName="Beebe", Scores= new List{35, 72, 91, 70}}

};

// Use a compound from to access the inner sequence within each element.

// Note the similarity to a nested foreach statement.

var scoreQuery = from student in students

from score in es

where score > 90

select new { Last = Name, score };

// Execute the queries.

eLine("scoreQuery:");

foreach (var student in scoreQuery)

{

eLine("{0} Score: {1}", , e);

}

// Keep the console window open in debug mode.

eLine("Press any key to exit.");

Key();

}

}

/*

scoreQuery:

Omelchenko Score: 97

O'Donnell Score: 91

Mortensen Score: 94

Garcia Score: 97

Beebe Score: 91

*/

  使用多个 from 子句执行联接

复合 from 子句用于访问单个数据源中的内部集合。不过,查询还可以包含多个可从独立数据源生成补充查询的 from 子句。使用此技术可以执行某些类型的、无法通过使用 join 子句执行的联接操作。

下面的示例演示如何使用两个 from 子句构成两个数据源的完全交叉联接。

C#

class CompoundFrom2

{

static void Main()

{

char[] upperCase = { 'A', 'B', 'C'};

char[] lowerCase = { 'x', 'y', 'z'};

var joinQuery1 =

from upper in upperCase

from lower in lowerCase

select new { upper, lower};

var joinQuery2 =

from lower in lowerCase

where lower != 'x'

from upper in upperCase

select new { lower, upper };

// Execute the queries.

eLine("Cross join:");

foreach (var pair in joinQuery1)

{

eLine("{0} is matched to {1}", r, r);

}

eLine("Filtered non-equijoin:");

foreach (var pair in joinQuery2)

{

eLine("{0} is matched to {1}", r, r);

}

// Keep the console window open in debug mode.

eLine("Press any key to exit.");

Key();

}

}

/* Output:

Cross join:

A is matched to x

A is matched to y

A is matched to z

B is matched to x

B is matched to y

B is matched to z

C is matched to x

C is matched to y

C is matched to z

Filtered non-equijoin:

y is matched to A

y is matched to B

y is matched to C

z is matched to A

z is matched to B

z is matched to C

*/

标签:子句 关键字