Queryable.LongCount 方法

定義

傳回代表序列中項目數目的 Int64

多載

LongCount<TSource>(IQueryable<TSource>)

傳回代表序列中項目總數的 Int64

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

傳回 Int64,其代表序列中符合條件的項目數目。

LongCount<TSource>(IQueryable<TSource>)

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

傳回代表序列中項目總數的 Int64

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

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

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

傳回

source 中的元素數目。

例外狀況

sourcenull

元素數目超過 Int64.MaxValue

範例

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

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

long count = fruits.AsQueryable().LongCount();

Console.WriteLine("There are {0} fruits in the collection.", count);

/*
    This code produces the following output:

    There are 6 fruits in the collection.
*/
Dim fruits() As String = {"apple", "banana", "mango", _
                      "orange", "passionfruit", "grape"}

Dim count As Long = fruits.AsQueryable().LongCount()

MsgBox(String.Format("There are {0} fruits in the collection.", count))

' This code produces the following output:

' There are 6 fruits in the collection.

備註

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

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

適用於

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

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

傳回 Int64,其代表序列中符合條件的項目數目。

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

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

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

predicate
Expression<Func<TSource,Boolean>>

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

傳回

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

例外狀況

sourcepredicatenull

相符項目的數目超過 Int64.MaxValue

範例

下列程式代碼範例示範如何使用 LongCount<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 來計算數位中滿足條件的專案。

class Pet
{
    public string Name { get; set; }
    public int Age { get; set; }
}

public static void LongCountEx2()
{
    Pet[] pets = { new Pet { Name="Barley", Age=8 },
                   new Pet { Name="Boots", Age=4 },
                   new Pet { Name="Whiskers", Age=1 } };

    const int Age = 3;

    // Count the number of Pet objects where Pet.Age is greater than 3.
    long count = pets.AsQueryable().LongCount(pet => pet.Age > Age);

    Console.WriteLine("There are {0} animals over age {1}.", count, Age);
}

/*
    This code produces the following output:

    There are 2 animals over age 3.
*/
Structure Pet
    Public Name As String
    Public Age As Integer
End Structure

Shared Sub LongCountEx2()
    Dim pets() As Pet = {New Pet With {.Name = "Barley", .Age = 8}, _
                       New Pet With {.Name = "Boots", .Age = 4}, _
                       New Pet With {.Name = "Whiskers", .Age = 1}}

    Const Age As Integer = 3

    ' Count the number of Pet objects where Pet.Age is greater than 3.
    Dim count As Long = pets.AsQueryable().LongCount(Function(Pet) Pet.Age > Age)

    MsgBox(String.Format("There are {0} animals over age {1}.", count, Age))
End Sub

' This code produces the following output:

' There are 2 animals over age 3.

備註

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

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

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

適用於