Jaa


EdmCoreModel.GetDecimal Method

Definition

Overloads

GetDecimal(Boolean)

Gets a reference to a decimal primitive type definition.

GetDecimal(Nullable<Int32>, Nullable<Int32>, Boolean)

Gets a reference to a decimal primitive type definition.

GetDecimal(Boolean)

Gets a reference to a decimal primitive type definition.

public Microsoft.OData.Edm.IEdmDecimalTypeReference GetDecimal (bool isNullable);
member this.GetDecimal : bool -> Microsoft.OData.Edm.IEdmDecimalTypeReference
Public Function GetDecimal (isNullable As Boolean) As IEdmDecimalTypeReference

Parameters

isNullable
Boolean

Flag specifying if the referenced type should be nullable.

Returns

A new decimal type reference.

Applies to

GetDecimal(Nullable<Int32>, Nullable<Int32>, Boolean)

Gets a reference to a decimal primitive type definition.

public Microsoft.OData.Edm.IEdmDecimalTypeReference GetDecimal (int? precision, int? scale, bool isNullable);
member this.GetDecimal : Nullable<int> * Nullable<int> * bool -> Microsoft.OData.Edm.IEdmDecimalTypeReference
Public Function GetDecimal (precision As Nullable(Of Integer), scale As Nullable(Of Integer), isNullable As Boolean) As IEdmDecimalTypeReference

Parameters

precision
Nullable<Int32>

Precision of values of this type.

scale
Nullable<Int32>

Scale of values of this type.

isNullable
Boolean

Flag specifying if the referenced type should be nullable.

Returns

A new decimal type reference.

Applies to