Click or drag to resize

SelfServicingExtensionMethods.GetScalarAsync<TValue> Method (IDao, DynamicQuery, ITransaction, CancellationToken)

Async variant of GetScalar<TValue>(IDao, DynamicQuery, ITransaction). Fetches a scalar value using the query specified, and returns this value typed as TValue, using a cast. The query specified will be converted to a scalar query prior to execution.

Namespace:  SD.LLBLGen.Pro.QuerySpec.SelfServicing
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.7.0.0 (5.7.0)
Syntax
public static Task<TValue> GetScalarAsync<TValue>(
	this IDao dao,
	DynamicQuery query,
	ITransaction transactionToUse,
	CancellationToken cancellationToken
)

Parameters

dao
Type: SD.LLBLGen.Pro.ORMSupportClasses.IDao
The DAO instance.
query
Type: SD.LLBLGen.Pro.QuerySpec.DynamicQuery
The query.
transactionToUse
Type: SD.LLBLGen.Pro.ORMSupportClasses.ITransaction
The transaction to use.
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Type Parameters

TValue
The type of the value to return.

Return Value

Type: Task<TValue>
the value to fetch

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IDao. 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
Use nullable(Of T) for scalars which are a value type, to avoid crashes when the scalar query returns a NULL value.
See Also