EdmCoreModel.GetDecimal Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- isNullable
- Boolean
Flag specifying if the referenced type should be nullable.
Returns
A new decimal type reference.