TypeUsage.CreateDecimalTypeUsage-Methode (PrimitiveType, Byte, Byte)
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Erstellt mithilfe der angegebenen Facetwerte ein TypeUsage-Objekt zur Beschreibung eines Dezimaltyps.
Namespace: System.Data.Entity.Core.Metadata.Edm
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Shared Function CreateDecimalTypeUsage ( _
primitiveType As PrimitiveType, _
precision As Byte, _
scale As Byte _
) As TypeUsage
'Usage
Dim primitiveType As PrimitiveType
Dim precision As Byte
Dim scale As Byte
Dim returnValue As TypeUsage
returnValue = TypeUsage.CreateDecimalTypeUsage(primitiveType, _
precision, scale)
public static TypeUsage CreateDecimalTypeUsage(
PrimitiveType primitiveType,
byte precision,
byte scale
)
public:
static TypeUsage^ CreateDecimalTypeUsage(
PrimitiveType^ primitiveType,
unsigned char precision,
unsigned char scale
)
static member CreateDecimalTypeUsage :
primitiveType:PrimitiveType *
precision:byte *
scale:byte -> TypeUsage
public static function CreateDecimalTypeUsage(
primitiveType : PrimitiveType,
precision : byte,
scale : byte
) : TypeUsage
Parameter
- primitiveType
Typ: System.Data.Entity.Core.Metadata.Edm.PrimitiveType
Ein PrimitiveType, für den das TypeUsage-Objekt erstellt wird.
- precision
Typ: System.Byte
Die Genauigkeit des Dezimaltyps als Typ Byte.
- scale
Typ: System.Byte
Die Anzahl der Dezimalstellen des Dezimaltyps als Typ Byte.
Rückgabewert
Typ: System.Data.Entity.Core.Metadata.Edm.TypeUsage
Ein TypeUsage-Objekt, durch das der Dezimaltyp mithilfe der angegebenen Facetwerte beschrieben wird.