IDbSpecificCreator.CreateParameter Method (String, Int32, ParameterDirection, Boolean, Byte, Byte, Object) |
Creates a new, filled parameter.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
SyntaxDbParameter CreateParameter(
string parameterType,
int size,
ParameterDirection direction,
bool isNullable,
byte precision,
byte scale,
Object value
)
Function CreateParameter (
parameterType As String,
size As Integer,
direction As ParameterDirection,
isNullable As Boolean,
precision As Byte,
scale As Byte,
value As Object
) As DbParameter
Parameters
- parameterType
- Type: System.String
Type of the parameter. - size
- Type: System.Int32
The size. - direction
- Type: System.Data.ParameterDirection
The direction. - isNullable
- Type: System.Boolean
if set to true [is nullable]. - precision
- Type: System.Byte
The precision. - scale
- Type: System.Byte
The scale. - value
- Type: System.Object
The value.
Return Value
Type:
DbParameter
See Also