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.6.0.0 (5.6.19.0117)
Syntax public TableValuedFunctionPersistenceInfo AddParameter(
string parameterName,
string typeName,
int size,
bool isNullable,
byte precision,
byte scale,
Type actualDotNetType,
TypeConverter converterToUse
)
Public Function AddParameter (
parameterName As String,
typeName As String,
size As Integer,
isNullable As Boolean,
precision As Byte,
scale As Byte,
actualDotNetType As Type,
converterToUse As TypeConverter
) As TableValuedFunctionPersistenceInfo
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:
TableValuedFunctionPersistenceInfothis persistence info instance
See Also