Queryable.Where 方法

定義

根據述詞來篩選值序列。

多載

Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>)

根據述詞來篩選值序列。

Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>)

根據述詞來篩選值序列。 述詞函式的邏輯中使用各項目的索引。

Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

根據述詞來篩選值序列。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IQueryable<TSource> ^ Where(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, bool> ^> ^ predicate);
public static System.Linq.IQueryable<TSource> Where<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);
static member Where : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, bool>> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Where(Of TSource) (source As IQueryable(Of TSource), predicate As Expression(Of Func(Of TSource, Boolean))) As IQueryable(Of TSource)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要篩選的 IQueryable<T>

predicate
Expression<Func<TSource,Boolean>>

用來測試每個項目是否符合條件的函式。

傳回

IQueryable<TSource>

IQueryable<T>,其中包含輸入序列中符合 predicate 指定之條件的項目。

例外狀況

sourcepredicatenull

範例

下列程式碼範例示範如何使用 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 來篩選序列。

List<string> fruits =
    new List<string> { "apple", "passionfruit", "banana", "mango",
                       "orange", "blueberry", "grape", "strawberry" };

// Get all strings whose length is less than 6.
IEnumerable<string> query =
    fruits.AsQueryable().Where(fruit => fruit.Length < 6);

foreach (string fruit in query)
    Console.WriteLine(fruit);

/*
    This code produces the following output:

    apple
    mango
    grape
*/
Dim fruits As New List(Of String)(New String() _
                        {"apple", "passionfruit", "banana", "mango", _
                         "orange", "blueberry", "grape", "strawberry"})

' Get all strings whose length is less than 6.
Dim query = fruits.AsQueryable().Where(Function(fruit) fruit.Length < 6)

' Display the results.
Dim output As New System.Text.StringBuilder
For Each fruit As String In query
    output.AppendLine(fruit)
Next
MsgBox(output.ToString())

' This code produces the following output:

' apple
' mango
' grape

備註

這個方法至少有一個類型 Expression<TDelegate> 參數,其類型引數為其中一個 Func<T,TResult> 型別。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 會產生 , MethodCallExpression 表示 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 呼叫本身為建構的泛型方法。 然後,它會將 傳遞 MethodCallExpressionCreateQuery(Expression) 參數的 屬性所 Provider 表示的 source 方法 IQueryProvider

執行表示呼叫 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 的運算式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會從 source 傳回符合 所 predicate 指定條件的專案。

適用於

Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

根據述詞來篩選值序列。 述詞函式的邏輯中使用各項目的索引。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IQueryable<TSource> ^ Where(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, int, bool> ^> ^ predicate);
public static System.Linq.IQueryable<TSource> Where<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,bool>> predicate);
static member Where : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, int, bool>> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Where(Of TSource) (source As IQueryable(Of TSource), predicate As Expression(Of Func(Of TSource, Integer, Boolean))) As IQueryable(Of TSource)

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要篩選的 IQueryable<T>

predicate
Expression<Func<TSource,Int32,Boolean>>

用來測試各項目是否符合條件的函式;此函式的第二個參數代表來源序列中項目的索引。

傳回

IQueryable<TSource>

IQueryable<T>,其中包含輸入序列中符合 predicate 指定之條件的項目。

例外狀況

sourcepredicatenull

範例

下列程式碼範例示範如何使用 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 來根據包含每個元素索引的述詞來篩選序列。

int[] numbers = { 0, 30, 20, 15, 90, 85, 40, 75 };

// Get all the numbers that are less than or equal to
// the product of their index in the array and 10.
IEnumerable<int> query =
    numbers.AsQueryable()
    .Where((number, index) => number <= index * 10);

foreach (int number in query)
    Console.WriteLine(number);

/*
    This code produces the following output:

    0
    20
    15
    40
*/
Dim numbers() As Integer = {0, 30, 20, 15, 90, 85, 40, 75}

' Get all the numbers that are less than or equal to
' the product of their index in the array and 10.
Dim query = numbers.AsQueryable() _
    .Where(Function(number, index) number <= index * 10)

' Display the results.
Dim output As New System.Text.StringBuilder
For Each number As Integer In query
    output.AppendLine(number)
Next
MsgBox(output.ToString())

' This code produces the following output:

' 0
' 20
' 15
' 40

備註

這個方法至少有一個類型 Expression<TDelegate> 參數,其類型引數為其中一個 Func<T,TResult> 型別。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 會產生 , MethodCallExpression 表示 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 呼叫本身為建構的泛型方法。 然後,它會將 傳遞 MethodCallExpressionCreateQuery(Expression) 參數的 屬性所 Provider 表示的 source 方法 IQueryProvider

執行表示呼叫 Where<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 的運算式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會從 source 傳回符合 所 predicate 指定條件的專案。 每個來源專案的索引會以 的第二個引數 predicate 的形式提供給 。

適用於