IDao.GetAsProjection Method (List<IDataValueProjector>, IGeneralDataProjector, ITransaction, IEntityFields, IPredicateExpression, IRelationCollection, Int32, ISortExpression, Boolean) |
Creates a new Retrieval query from the elements passed in, executes that retrievalquery and projects the resultset of that query using the
value projectors and the projector specified. If a transaction is specified, the command is wired to the transaction and executed inside the
transaction. The projection results will be stored in the projector.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntaxvoid GetAsProjection(
List<IDataValueProjector> valueProjectors,
IGeneralDataProjector projector,
ITransaction transactionToUse,
IEntityFields fields,
IPredicateExpression filter,
IRelationCollection relations,
int maxNumberOfItemsToReturn,
ISortExpression sortClauses,
bool allowDuplicates
)
Sub GetAsProjection (
valueProjectors As List(Of IDataValueProjector),
projector As IGeneralDataProjector,
transactionToUse As ITransaction,
fields As IEntityFields,
filter As IPredicateExpression,
relations As IRelationCollection,
maxNumberOfItemsToReturn As Integer,
sortClauses As ISortExpression,
allowDuplicates As Boolean
)
Parameters
- valueProjectors
- Type: System.Collections.Generic.List<IDataValueProjector>
The value projectors. - projector
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IGeneralDataProjector
The projector to use for projecting a plain row onto a new object provided by the projector. - transactionToUse
- Type: SD.LLBLGen.Pro.ORMSupportClasses.ITransaction
The transaction to use, if you execute this method inside a transcation. Specify null otherwise - fields
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFields
The fields to use to build the query. - filter
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IPredicateExpression
The filter. - relations
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IRelationCollection
The relations. - maxNumberOfItemsToReturn
- Type: System.Int32
The max number of items to return. Specify 0 to return all elements - sortClauses
- Type: SD.LLBLGen.Pro.ORMSupportClasses.ISortExpression
The sort clauses. - allowDuplicates
- Type: System.Boolean
If set to true, allow duplicates in the resultset, otherwise it will emit DISTINCT into the query (if possible).
See Also