3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

どこまでがLINQ?

Posted at

統合言語クエリ(LINQ; Language-Integrated Query)とは、どこまでの範囲を指すか?

C#では2種類のLINQ記述方法が用意されてる。前者はコンパイル時に実質メソッド呼び出しに展開される。MSDN公式でも両者ともにLINQとしている。

  • クエリ構文 (query syntax)
  • メソッド構文 (method syntax)

MSDN LINQ でのクエリ構文とメソッド構文 (C#) より:

int[] numbers = { 5, 10, 8, 3, 6, 12 };

// クエリ構文
IEnumerable<int> numQuery1 = 
    from num in numbers
    where num % 2 == 0
    orderby num
    select num;

// メソッド構文
IEnumerable<int> numQuery2 =
    numbers
    .Where(num => num % 2 == 0)
    .OrderBy(n => n);
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?