Click or drag to resize
IDaoGetAsDataReaderAsync Method (ITransaction, CommandBehavior, QueryParameters, CancellationToken)
Async variant of GetAsDataReader(ITransaction, CommandBehavior, QueryParameters). Creates a new Retrieval query from the elements passed in and executes that retrievalquery to return an open, ready to use IDataReader. The datareader's command behavior is set to the readerBehavior passed in. If a transaction is specified, the command is wired to the transaction.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
Task<IDataReader> GetAsDataReaderAsync(
	ITransaction transactionToUse,
	CommandBehavior readerBehavior,
	QueryParameters parameters,
	CancellationToken cancellationToken
)

Parameters

transactionToUse
Type: SD.LLBLGen.Pro.ORMSupportClassesITransaction
The transaction to use, if you execute this method inside a transcation. Specify null otherwise
readerBehavior
Type: System.DataCommandBehavior
The reader behavior to set.
parameters
Type: SD.LLBLGen.Pro.ORMSupportClassesQueryParameters
The parameters.
cancellationToken
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskIDataReader
Open, ready to use IDataReader
Exceptions
ExceptionCondition
ArgumentNullExceptionparameters
Remarks
Advanced functionality: be aware that the datareader returned is open, and the connection used to open this datareader is also open
See Also