QueryableExtensionMethods.CountColumnAsync<TSource, TColumnType> Method (IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, CancellationToken) |
Async variant of CountColumn.
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntaxpublic static Task<int> CountColumnAsync<TSource, TColumnType>(
this IQueryable<TSource> source,
Expression<Func<TSource, TColumnType>> selector,
CancellationToken cancellationToken
)
<ExtensionAttribute>
Public Shared Function CountColumnAsync(Of TSource, TColumnType) (
source As IQueryable(Of TSource),
selector As Expression(Of Func(Of TSource, TColumnType)),
cancellationToken As CancellationToken
) As Task(Of Integer)
Parameters
- source
- Type: System.Linq.IQueryable<TSource>
The source. - selector
- Type: System.Linq.Expressions.Expression<Func<TSource, TColumnType>>
The selector. A projection function to apply to each element. - cancellationToken
- Type: System.Threading.CancellationToken
The cancellation token.
Type Parameters
- TSource
- The type of the source.
- TColumnType
- The type of the column.
Return Value
Type:
Task<Int32>
The number of values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IQueryable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks
doesn't apply DISTINCT to the set to count. If you want the total of distinct values, use the overload which accepts a boolean.
See Also