Click or drag to resize
DaoBase.GetAsProjection<T> Method (IRetrievalQuery)
Executes the passed in retrievalquery and projects the resultset onto instances of T (each row is materialized into an instance of T).

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax
public List<T> GetAsProjection<T>(
	IRetrievalQuery queryToExecute
)

Parameters

queryToExecute
Type: SD.LLBLGen.Pro.ORMSupportClasses.IRetrievalQuery
The query to execute.

Type Parameters

T

Return Value

Type: List<T>
List of instances of T, one for each row in the resultset of queryToExecute

Implements

IDao.GetAsProjection<T>(IRetrievalQuery)
See Also