Click or drag to resize

DataAccessAdapterCore.FetchProjection<T> Method (List<T>, IRetrievalQuery, Boolean)

Executes the passed in retrievalquery and projects the resultset onto instances of T (each row is materialized into an instance of T). If a transaction is in progress, the command is wired to the transaction and executed inside the transaction. The projection results will be stored in the specified destination set.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.8.0.0 (5.8.21.0111)
Syntax
protected void FetchProjection<T>(
	List<T> destination,
	IRetrievalQuery queryToExecute,
	bool performImplicitTypeConversions = false
)

Parameters

destination
Type: System.Collections.Generic.List<T>
The destination to which instances of T will be added.
queryToExecute
Type: SD.LLBLGen.Pro.ORMSupportClasses.IRetrievalQuery
The query to execute.
performImplicitTypeConversions (Optional)
Type: System.Boolean
If true, the projection code used will perform implicit type conversions using a slower pipeline. If false, it will use optimized projection logic which assumes the value at ordinal n is of the expected type.

Type Parameters

T
See Also