Click or drag to resize
DynamicQueryEngineBaseCreateRealQueryAndParameters 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.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected virtual void CreateRealQueryAndParameters(
	Query query,
	string sqlQuery,
	Object parameterValues
)

Parameters

query
Type: SD.LLBLGen.Pro.ORMSupportClassesQuery
The query.
sqlQuery
Type: SystemString
The SQL query.
parameterValues
Type: SystemObject
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.
See Also