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.4.0.0 (5.4.0)
Syntax public StoredProcedureCall AddParameter(
string parameterName,
string typeName,
int size,
ParameterDirection direction,
bool isNullable,
byte precision,
byte scale,
Object value
)
Public Function AddParameter (
parameterName As String,
typeName As String,
size As Integer,
direction As ParameterDirection,
isNullable As Boolean,
precision As Byte,
scale As Byte,
value As Object
) As StoredProcedureCall
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:
StoredProcedureCallthis instance to create a fluent interface
See Also