Click or drag to resize
DynamicQueryEngine.CreateRealQueryAndParameters Method
Creates the real sql query to execute from the query in string form and the parameters specified. It updates 'query' with the constructed string and real DbParameter instances.

Namespace:  SD.LLBLGen.Pro.DQE.DB2
Assembly:  SD.LLBLGen.Pro.DQE.DB2 (in SD.LLBLGen.Pro.DQE.DB2.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected override void CreateRealQueryAndParameters(
	Query query,
	string sqlQuery,
	Object parameterValues
)

Parameters

query
Type: SD.LLBLGen.Pro.ORMSupportClasses.Query
The query.
sqlQuery
Type: System.String
The SQL query.
parameterValues
Type: System.Object
The object containing the parameter values to use in the query. If it's an object array, parameters using ordening are assumed, otherwise for each public, non-static property, a parameter is created.
Exceptions
See Also