Click or drag to resize

IDbSpecificCreatorCreateParameter Method (ParameterDirection, Object, String)

Creates a parameter based on the direction passed in and the value passed in.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
DbParameter CreateParameter(
	ParameterDirection direction,
	Object valueToSet,
	string parameterName
)

Parameters

direction
Type: System.DataParameterDirection
Direction for the parameter
valueToSet
Type: SystemObject
The value to set.
parameterName
Type: SystemString
Name of the parameter. Can be empty, in which case a new name is autogenerated

Return Value

Type: DbParameter
Valid parameter for usage with the target database.
See Also