Queryable.TakeWhile 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
只要指定的條件為 true,就會傳回序列中的項目,然後略過其餘項目。
多載
TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) |
只要指定的條件為 true,就會傳回序列中的項目。 項目的索引是用於述詞功能的邏輯中。 |
TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) |
只要指定的條件為 true,就會傳回序列中的項目。 |
TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
只要指定的條件為 true,就會傳回序列中的項目。 項目的索引是用於述詞功能的邏輯中。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<TSource> ^ TakeWhile(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, int, bool> ^> ^ predicate);
public static System.Linq.IQueryable<TSource> TakeWhile<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,int,bool>> predicate);
static member TakeWhile : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, int, bool>> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function TakeWhile(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>
傳回項目的序列。
- predicate
- Expression<Func<TSource,Int32,Boolean>>
用來測試各項目是否符合條件的函式;此函式的第二個參數代表來源序列中項目的索引。
傳回
IQueryable<T>,其中包含輸入序列中的項目,而這些項目出現在已無法通過 predicate
所指定之測試的項目前面。
例外狀況
source
或 predicate
為 null
。
範例
下列程式代碼範例示範如何使用 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 傳回序列開頭的專案,只要使用元素索引的條件為 true。
string[] fruits = { "apple", "passionfruit", "banana", "mango",
"orange", "blueberry", "grape", "strawberry" };
// Take strings from the array until a string whose length
// is less than its index in the array is found.
IEnumerable<string> query =
fruits.AsQueryable()
.TakeWhile((fruit, index) => fruit.Length >= index);
foreach (string fruit in query)
Console.WriteLine(fruit);
/*
This code produces the following output:
apple
passionfruit
banana
mango
orange
blueberry
*/
Dim fruits() As String = _
{"apple", "passionfruit", "banana", "mango", _
"orange", "blueberry", "grape", "strawberry"}
' Take strings from the array until a string whose length
' is less than its index in the array is found.
Dim query = fruits.AsQueryable() _
.TakeWhile(Function(fruit, index) fruit.Length >= index)
' 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
' passionfruit
' banana
' mango
' orange
' blueberry
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 會產生 , MethodCallExpression 表示呼叫 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionCreateQuery(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Int32,Boolean>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是它會套用predicate
至 中的每個source
專案,直到找到傳回 false
的項目predicate
為止。 它會傳回所有專案直到該點為止。 每個來源項目的索引會提供做為 的第二個自變數給 predicate
。
適用於
TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
只要指定的條件為 true,就會傳回序列中的項目。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<TSource> ^ TakeWhile(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, bool> ^> ^ predicate);
public static System.Linq.IQueryable<TSource> TakeWhile<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);
static member TakeWhile : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, bool>> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function TakeWhile(Of TSource) (source As IQueryable(Of TSource), predicate As Expression(Of Func(Of TSource, Boolean))) As IQueryable(Of TSource)
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
傳回項目的序列。
- predicate
- Expression<Func<TSource,Boolean>>
用來測試每個項目是否符合條件的函式。
傳回
IQueryable<T>,其中包含輸入序列中的項目,而這些項目出現在已無法通過 predicate
所指定之測試的項目前面。
例外狀況
source
或 predicate
為 null
。
範例
下列程式代碼範例示範如何使用 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 傳回序列開頭的專案,只要條件為 true。
string[] fruits = { "apple", "banana", "mango", "orange",
"passionfruit", "grape" };
// Take strings from the array until a string
// that is equal to "orange" is found.
IEnumerable<string> query =
fruits.AsQueryable()
.TakeWhile(fruit => String.Compare("orange", fruit, true) != 0);
foreach (string fruit in query)
Console.WriteLine(fruit);
/*
This code produces the following output:
apple
banana
mango
*/
Dim fruits() As String = {"apple", "banana", "mango", "orange", _
"passionfruit", "grape"}
' Take strings from the array until a string
' that is equal to "orange" is found.
Dim query = fruits.AsQueryable() _
.TakeWhile(Function(fruit) String.Compare("orange", fruit, True) <> 0)
Dim output As New System.Text.StringBuilder
For Each fruit As String In query
output.AppendLine(fruit)
Next
' Display the output.
MsgBox(output.ToString())
'This code produces the following output:
'apple
'banana
'mango
備註
這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>。
方法 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 會產生 , MethodCallExpression 表示呼叫 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionCreateQuery(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource
。
執行表示呼叫 TakeWhile<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source
。 預期的行為是它會套用predicate
至 中的每個source
專案,直到找到傳回 false
的項目predicate
為止。 它會傳回所有專案直到該點為止。