DynamicQueryEngineCreateRealQueryAndParameters 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.Access
    Assembly:
   SD.LLBLGen.Pro.DQE.Access (in SD.LLBLGen.Pro.DQE.Access.dll) Version: 5.4.0.0 (5.4.0)
Syntaxprotected override void CreateRealQueryAndParameters(
	Query query,
	string sqlQuery,
	Object parameterValues
)
Protected Overrides Sub CreateRealQueryAndParameters ( 
	query As Query,
	sqlQuery As String,
	parameterValues As Object
)
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. 
Exceptions
See Also