Click or drag to resize
DataAccessCoreImpl.IDataAccessCore.FetchExcludedFieldBatchAsync Method
Async variant of FetchExcludedFieldBatch(IEntityFieldsCore, IRelationPredicateBucket, Int32). Fetches the excluded field batch defined by the parameters specified. The returned reader is used by the batch fetcher to merge the resultset it represents into the entities hold by the caller.

Namespace: SD.LLBLGen.Pro.ORMSupportClasses.SelfServicingSpecific
Assembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax
Task<IDataReader> IDataAccessCore.FetchExcludedFieldBatchAsync(
	IEntityFieldsCore resultFields,
	IRelationPredicateBucket filter,
	int batchSize,
	CancellationToken cancellationToken
)

Parameters

resultFields
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldsCore
The result fields.
filter
Type: SD.LLBLGen.Pro.ORMSupportClasses.IRelationPredicateBucket
The filter.
batchSize
Type: System.Int32
Size of the batch.
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<IDataReader>

Implements

IDataAccessCore.FetchExcludedFieldBatchAsync(IEntityFieldsCore, IRelationPredicateBucket, Int32, CancellationToken)
See Also