Click or drag to resize
DbSpecificCreatorBaseConvertParameterOutputValueToRealValueT Method
Converts the parameter output value (contained in the parameter specified) to a real value. This is necessary for example if the value of the parameter is a value of a type native to an ADO.NET provider, like OracleDecimal.

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 virtual Object ConvertParameterOutputValueToRealValue<T>(
	DbParameter parameter
)

Parameters

parameter
Type: System.Data.CommonDbParameter
The parameter.

Type Parameters

T
type of the output

Return Value

Type: Object
value of parameter converted to the real value of type T.

Implements

IDbSpecificCreatorConvertParameterOutputValueToRealValueT(DbParameter)
Remarks
A no-op (returns parameter.Value) for most databases, not for Oracle ODP.NET
See Also