Click or drag to resize

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.5.0.0 (5.5.18.1019)
Syntax
protected string MakeParametersAnonymous(
	string commandText,
	IList parameters
)

Parameters

commandText
Type: SystemString
The command text.
parameters
Type: System.CollectionsIList
The parameters.

Return Value

Type: String
anonymized command text.
See Also