Click or drag to resize
TableValuedFunctionPersistenceInfoAddParameter Method
Adds the information for the parameter with the name specified. Parameters have to be added with this method in the right order

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 TableValuedFunctionPersistenceInfo AddParameter(
	string parameterName,
	string typeName,
	int size,
	bool isNullable,
	byte precision,
	byte scale,
	Type actualDotNetType,
	TypeConverter converterToUse
)

Parameters

parameterName
Type: SystemString
Name of the parameter.
typeName
Type: SystemString
Name of the type.
size
Type: SystemInt32
The size.
isNullable
Type: SystemBoolean
if set to true [is nullable].
precision
Type: SystemByte
The precision.
scale
Type: SystemByte
The scale.
actualDotNetType
Type: SystemType
Actual .net type of the parameter.
converterToUse
Type: System.ComponentModelTypeConverter
The converter to use.

Return Value

Type: TableValuedFunctionPersistenceInfo
this persistence info instance
See Also