查询操作的三部分
所有 LINQ 查询操作都由以下三个不同的操作组成:获取数据源、创建查询、执行查询。
下面的示例演示如何用源代码表示查询操作的三个部分。
using System;
using System.Linq;
namespace testlinq
{
class IntroToLINQ
{
static void Main()
{
// The Three Parts of a LINQ Query:
// 1. Data source.
int[] numbers = new int[7] { 0, 1, 2, 3, 4, 5, 6 };
// 2. Query creation.
// numQuery is an IEnumerable<int>
var numQuery =
from num in numbers
where (num % 2) == 0
select num;
// 3. Query execution.
foreach (int num in numQuery)
{
Console.Write("{0,1} ", num);
}
}
}
}