| 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.3.0.0 (5.3.0)
Syntaxpublic 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
RemarksObtain the value by calling GetOutputValue with the proper parameter index.
See Also