Click or drag to resize

ActionQuery.AddSequenceRetrievalQuery Method (DbCommand, Boolean)

Adds a new sequence retrieval query to this query

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.7.0.0 (5.7.0)
Syntax
public ISequenceRetrievalQuery AddSequenceRetrievalQuery(
	DbCommand sequenceRetrievalCommand,
	bool executeSequenceCommandFirst
)

Parameters

sequenceRetrievalCommand
Type: System.Data.Common.DbCommand
The Scalar command used to retrieve the used/to use sequence value. This command will be executed as a scalar query and depending on ExecuteSequenceCommandFirst it will be executed before or after the actual query.
executeSequenceCommandFirst
Type: System.Boolean
Flag to signal if SequenceRetrievalCommand has to be executed before (true) or after (false) the actual query in this ActionQuery object.

Return Value

Type: ISequenceRetrievalQuery
the SequenceRetrievalQuery added

Implements

IActionQuery.AddSequenceRetrievalQuery(DbCommand, Boolean)
See Also