Click or drag to resize

QueryParameterHelper Constructor

Instantiate the object with the query and a dictionary over supported parameters

Namespace:  Omada.OE.AppLogic.Helpers
Assembly:  Omada.OE.AppLogic (in Omada.OE.AppLogic.dll) Version: 15.0.0.0
Syntax
C#
public QueryParameterHelper(
	string query,
	Dictionary<string, QueryParameterHelperParameterType> supportedParameters,
	bool useTemporaryTables = true,
	int temporaryTableThreshold = 50
)

Parameters

query
Type: SystemString
the query string to make condition and replacement on
supportedParameters
Type: System.Collections.GenericDictionaryString, QueryParameterHelperParameterType
dictionary of the supported parameters
useTemporaryTables (Optional)
Type: SystemBoolean
set to true to store values of a '*List' paramter type in a temporary table
temporaryTableThreshold (Optional)
Type: SystemInt32
only store values if number of values exceeds this threshold
See Also