Click or drag to resize
StoredProcedureCallAddParameter Method
Adds a new parameter to the call

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 StoredProcedureCall AddParameter(
	string parameterName,
	string typeName,
	int size,
	ParameterDirection direction,
	bool isNullable,
	byte precision,
	byte scale,
	Object value
)

Parameters

parameterName
Type: SystemString
Name of the parameter.
typeName
Type: SystemString
Name of the type, which is the ADO.NET type enum value string representation, e.g. "VarChar"
size
Type: SystemInt32
The size.
direction
Type: System.DataParameterDirection
The direction.
isNullable
Type: SystemBoolean
value for the IsNullable flag of the parameter
precision
Type: SystemByte
The precision.
scale
Type: SystemByte
The scale.
value
Type: SystemObject
The value.

Return Value

Type: StoredProcedureCall
this instance to create a fluent interface
See Also