Click or drag to resize
StoredProcedureCallGetParameterValueTValue Method
Gets the value of the parameter at the index specified

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 TValue GetParameterValue<TValue>(
	int parameterIndex
)

Parameters

parameterIndex
Type: SystemInt32
Index of the parameter.

Type Parameters

TValue
The type of the value.

Return Value

Type: TValue
the value of the parameter. If the parameter is null, null is returned if TValue is a Nullable(Of T) type, otherwise the default value for the type. If TValue is a string, the default value is string.Empty. If TValue is a Guid, the default value is an empty guid, if TValue is a byte array, the default value is a new, empty array.
See Also