StoredProcedureCallAddReturnValueParameter Method |
Adds a return value parameter. If the stored procedure returns an integer value (possible in some databases) as return value, use this
method to add such a parameter to the call
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public StoredProcedureCall AddReturnValueParameter(
string integerTypeName
)
Public Function AddReturnValueParameter (
integerTypeName As String
) As StoredProcedureCall
Parameters
- integerTypeName
- Type: SystemString
Name of the integer type, e.g. "Int".
Return Value
Type:
StoredProcedureCallthis instance to create a fluent interface
Remarks Obtain the value by calling GetOutputValue with the proper parameter index.
See Also