Queryable.Count 方法

定義

傳回序列中的項目數。

多載

Count<TSource>(IQueryable<TSource>)

傳回序列中的項目數。

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

傳回指定之序列中符合條件的項目數目。

Count<TSource>(IQueryable<TSource>)

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

傳回序列中的項目數。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static int Count(System::Linq::IQueryable<TSource> ^ source);
public static int Count<TSource> (this System.Linq.IQueryable<TSource> source);
static member Count : System.Linq.IQueryable<'Source> -> int
<Extension()>
Public Function Count(Of TSource) (source As IQueryable(Of TSource)) As Integer

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

包含要計算之項目的 IQueryable<T>

傳回

輸入序列中的項目數目。

例外狀況

sourcenull

中的 source 元素數目大於 Int32.MaxValue

範例

下列程式碼範例示範如何使用 Count<TSource>(IQueryable<TSource>) 來計算序列中的專案。

string[] fruits = { "apple", "banana", "mango",
                    "orange", "passionfruit", "grape" };

int numberOfFruits = fruits.AsQueryable().Count();

Console.WriteLine(
    "There are {0} items in the array.",
    numberOfFruits);

// This code produces the following output:
//
// There are 6 items in the array.
Dim fruits() As String = {"apple", "banana", "mango", _
                    "orange", "passionfruit", "grape"}

Dim numberOfFruits As Integer = fruits.AsQueryable().Count()

MsgBox(String.Format( _
    "There are {0} items in the array.", _
    numberOfFruits))

' This code produces the following output:
'
' There are 6 items in the array.

備註

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

執行表示呼叫 Count<TSource>(IQueryable<TSource>) 的運算式樹狀結構所產生的查詢行為,取決於參數類型的 source 實作。 預期的行為是它會計算 中的 source 專案數目。

適用於

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

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

傳回指定之序列中符合條件的項目數目。

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

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

包含要計算之項目的 IQueryable<T>

predicate
Expression<Func<TSource,Boolean>>

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

傳回

序列中符合述詞函式之條件的項目數目。

例外狀況

sourcepredicatenull

中的 source 元素數目大於 Int32.MaxValue

範例

下列程式碼範例示範如何使用 Count<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 來計算符合條件之序列中的專案。

class Pet
{
    public string Name { get; set; }
    public bool Vaccinated { get; set; }
}

public static void CountEx2()
{
    // Create an array of Pet objects.
    Pet[] pets = { new Pet { Name="Barley", Vaccinated=true },
                   new Pet { Name="Boots", Vaccinated=false },
                   new Pet { Name="Whiskers", Vaccinated=false } };

    // Count the number of unvaccinated pets in the array.
    int numberUnvaccinated =
        pets.AsQueryable().Count(p => p.Vaccinated == false);

    Console.WriteLine(
        "There are {0} unvaccinated animals.",
        numberUnvaccinated);
}

// This code produces the following output:
//
// There are 2 unvaccinated animals.
Structure Pet
    Public Name As String
    Public Vaccinated As Boolean
End Structure

Shared Sub CountEx2()
    ' Create an array of Pet objects.
    Dim pets() As Pet = {New Pet With {.Name = "Barley", .Vaccinated = True}, _
                   New Pet With {.Name = "Boots", .Vaccinated = False}, _
                   New Pet With {.Name = "Whiskers", .Vaccinated = False}}

    ' Count the number of unvaccinated pets in the array.
    Dim numberUnvaccinated As Integer = pets.AsQueryable().Count(Function(p) p.Vaccinated = False)

    MsgBox(String.Format("There are {0} unvaccinated animals.", numberUnvaccinated))
End Sub

' This code produces the following output:
'
' There are 2 unvaccinated animals.

備註

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

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

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

適用於