Table of Contents

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
object
DynamicDataParameter
Inherited Members
Extension Methods

Constructors

DynamicDataParameter(string, Func<object>)

Constructor

public DynamicDataParameter(string name, Func<object> getValue)

Parameters

name string

Parameter name

getValue Func<object>

Function to get parameter value

Methods

Clone()

Clones the parameter

public override DataParameter Clone()

Returns

DataParameter

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