Class DynamicDataParameter
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Represents a dynamic data parameter which value is resolved at the execution of the query, not when the parameter is defined
[Obsolete("Class was not intended for public use and will be removed.")]
[ObsoleteSince(99, 0)]
public class DynamicDataParameter : DataParameter
- Inheritance
-
objectDynamicDataParameter
- Inherited Members
- Extension Methods
Constructors
DynamicDataParameter(string, Func<object>)
Constructor
public DynamicDataParameter(string name, Func<object> getValue)
Parameters
name
stringParameter name
getValue
Func<object>Function to get parameter value
Methods
Clone()
Clones the parameter
public override DataParameter Clone()
Returns
GetCurrentValue()
Gets the current value for query execution
protected override object GetCurrentValue()
Returns
- object
GetValueToCompare()
Gets the value for the parameter comparison
protected override object GetValueToCompare()
Returns
- object