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: 6.1.0.23.1204.1+9d8b98a22c49d038b4e3323bfe56aa1d0eabe7ae
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