Click or drag to resize

BcfRowGetNullableT Method (BcfColumn)

[This is preliminary documentation and is subject to change.]

Gets the value stored in specified column.

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.0.0-beta7
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 null.
Exceptions
ExceptionCondition
ArgumentNullExceptioncolumn is null.
ArgumentExceptionThe specified column does not belong to this table.
InvalidCastExceptionThe specified column is not of type T and not T?.
See Also