Click or drag to resize
ParameterValue Constructor
Initializes a new instance of the ParameterValue class.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public ParameterValue(
	ParameterDirection direction = ParameterDirection.Input,
	Object value = null,
	Nullable<int> size = null,
	Nullable<byte> precision = null,
	Nullable<byte> scale = null,
	Nullable<DbType> dbType = null,
	bool isNullable = false
)

Parameters

direction (Optional)
Type: System.DataParameterDirection
The direction the parameter has. By default this is Input
value (Optional)
Type: SystemObject
The value to use for the parameter. By default this is null
size (Optional)
Type: SystemNullableInt32
The size to use for the parameter. By default this isn't set.
precision (Optional)
Type: SystemNullableByte
The precision to use for the parameter. By default this isn't set
scale (Optional)
Type: SystemNullableByte
The scale to use for the parameter. By default this isn't set.
dbType (Optional)
Type: SystemNullableDbType
The dbtype to use for the parameter. By default this isn't set
isNullable (Optional)
Type: SystemBoolean
The value to use for the IsNullable property of the parameter. By default this is false.
See Also