RGObjectParameter Constructor

Initializes a new instance of the RGObjectParameter class with the specified name and value.

Definition

Namespace: Recrovit.RecroGridFramework.Data
Assembly: Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 8.0.0.24.0403.1
C#
public RGObjectParameter(
	string name,
	Object value,
	Type type = null
)

Parameters

name  String
The parameter name. This name should not include the "@" parameter marker that is used in Entity SQL statements, only the actual name. The first character of the expression must be a letter. Any successive characters in the expression must be either letters, numbers, or an underscore (_) character.
value  Object
The initial value (and inherently, the type) of the parameter.
type  Type  (Optional)
The parameter type.

See Also