decimal 型への参照を取得します。
名前空間: Microsoft.Data.Edm.Library
アセンブリ: Microsoft.Data.Edm (Microsoft.Data.Edm.dll)
構文
'宣言
Public Function GetDecimal ( _
precision As Nullable(Of Integer), _
scale As Nullable(Of Integer), _
isNullable As Boolean _
) As IEdmDecimalTypeReference
'使用
Dim instance As EdmCoreModel
Dim precision As Nullable(Of Integer)
Dim scale As Nullable(Of Integer)
Dim isNullable As Boolean
Dim returnValue As IEdmDecimalTypeReference
returnValue = instance.GetDecimal(precision, _
scale, isNullable)
public IEdmDecimalTypeReference GetDecimal(
Nullable<int> precision,
Nullable<int> scale,
bool isNullable
)
public:
IEdmDecimalTypeReference^ GetDecimal(
Nullable<int> precision,
Nullable<int> scale,
bool isNullable
)
member GetDecimal :
precision:Nullable<int> *
scale:Nullable<int> *
isNullable:bool -> IEdmDecimalTypeReference
public function GetDecimal(
precision : Nullable<int>,
scale : Nullable<int>,
isNullable : boolean
) : IEdmDecimalTypeReference
パラメーター
- precision
型: System.Nullable<Int32>
この型の有効桁数。
- scale
型: System.Nullable<Int32>
この型の小数点以下桁数。
- isNullable
型: System.Boolean
参照された型が null 値を許容する場合は true、それ以外の場合は false。
戻り値
型: Microsoft.Data.Edm.IEdmDecimalTypeReference
decimal 型参照。