DynamicQueryEngineBaseMakeParametersAnonymous Method (String, IList) | 
 
            Makes the parameters anonymous in the passed in query. An anonymous parameter is '?', not '@foo'. It walks all parameters and replaces the
            names of these parameters with "?" in the query text
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntaxprotected string MakeParametersAnonymous(
	string commandText,
	IList parameters
)
Protected Function MakeParametersAnonymous ( 
	commandText As String,
	parameters As IList
) As String
Parameters
- commandText
 - Type: SystemString
The command text. - parameters
 - Type: System.CollectionsIList
The parameters. 
Return Value
Type: 
Stringanonymized command text.
See Also