Click or drag to resize
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)
Syntax
public StoredProcedureCall AddReturnValueParameter(
	string integerTypeName
)

Parameters

integerTypeName
Type: SystemString
Name of the integer type, e.g. "Int".

Return Value

Type: StoredProcedureCall
this instance to create a fluent interface
Remarks
Obtain the value by calling GetOutputValue with the proper parameter index.
See Also