Click or drag to resize

DynamicQueryEngineBase.AppendFromClause Method

Appends a FROM clause with the contents of the elements specified to the destination and adds the parameters (if any) to the query to append to.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax
protected virtual void AppendFromClause(
	QueryParameters parameters,
	QueryFragments destination,
	RetrievalQuery queryToAppendTo,
	IFieldPersistenceInfo[] fieldsPersistenceInfo,
	IEntityFieldCore[] selectList
)

Parameters

parameters
Type: SD.LLBLGen.Pro.ORMSupportClasses.QueryParameters
the query parameters the query is build with
destination
Type: SD.LLBLGen.Pro.ORMSupportClasses.QueryFragments
the from clause to append to
queryToAppendTo
Type: SD.LLBLGen.Pro.ORMSupportClasses.RetrievalQuery
the query object that's being built
fieldsPersistenceInfo
Type:SD.LLBLGen.Pro.ORMSupportClasses.IFieldPersistenceInfo[]
the field persistence infos of the fields in the projection
selectList
Type:SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldCore[]
the projection
See Also