Click or drag to resize

BcfRowGetNullableT Method (BcfColumn)

Gets the value stored in specified column.

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public Nullable<T> GetNullable<T>(
	BcfColumn column
)
where T : struct, new()

Parameters

column
Type: CalculationWorks.BusinessModelBcfColumn
The column.

Type Parameters

T
The not-nullable value type.

Return Value

Type: NullableT
The value stored in the specified column if set; otherwise .
Exceptions
ExceptionCondition
ArgumentNullExceptioncolumn is .
ArgumentExceptionThe specified column does not belong to this table.
InvalidCastExceptionThe specified column is not of type T and not T?.
See Also