Click or drag to resize
DbSpecificCreatorBaseCreateParameter 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.3.0.0 (5.3.0)
Syntax
public virtual DbParameter CreateParameter(
	string parameterType,
	int size,
	ParameterDirection direction,
	bool isNullable,
	byte precision,
	byte scale,
	Object value
)

Parameters

parameterType
Type: SystemString
Type of the parameter.
size
Type: SystemInt32
The size.
direction
Type: System.DataParameterDirection
The direction.
isNullable
Type: SystemBoolean
if set to true [is nullable].
precision
Type: SystemByte
The precision.
scale
Type: SystemByte
The scale.
value
Type: SystemObject
The value.

Return Value

Type: DbParameter

Implements

IDbSpecificCreatorCreateParameter(String, Int32, ParameterDirection, Boolean, Byte, Byte, Object)
See Also