次の方法で共有


DecimalTypeMapping コンストラクター

定義

オーバーロード

DecimalTypeMapping(RelationalTypeMapping+RelationalTypeMappingParameters)

DecimalTypeMapping クラスの新しいインスタンスを初期化します。

DecimalTypeMapping(String, Nullable<DbType>)

DecimalTypeMapping クラスの新しいインスタンスを初期化します。

DecimalTypeMapping(String, Nullable<DbType>, Nullable<Int32>, Nullable<Int32>)

DecimalTypeMapping クラスの新しいインスタンスを初期化します。

DecimalTypeMapping(RelationalTypeMapping+RelationalTypeMappingParameters)

DecimalTypeMapping クラスの新しいインスタンスを初期化します。

protected DecimalTypeMapping (Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping.RelationalTypeMappingParameters parameters);
new Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping : Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping.RelationalTypeMappingParameters -> Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping
Protected Sub New (parameters As RelationalTypeMapping.RelationalTypeMappingParameters)

パラメーター

適用対象

DecimalTypeMapping(String, Nullable<DbType>)

DecimalTypeMapping クラスの新しいインスタンスを初期化します。

public DecimalTypeMapping (string storeType, System.Data.DbType? dbType = default);
new Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping : string * Nullable<System.Data.DbType> -> Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping
Public Sub New (storeType As String, Optional dbType As Nullable(Of DbType) = Nothing)

パラメーター

storeType
String

データベースの種類の名前。

dbType
Nullable<DbType>

使用する DbType

適用対象

DecimalTypeMapping(String, Nullable<DbType>, Nullable<Int32>, Nullable<Int32>)

DecimalTypeMapping クラスの新しいインスタンスを初期化します。

public DecimalTypeMapping (string storeType, System.Data.DbType? dbType = default, int? precision = default, int? scale = default);
public DecimalTypeMapping (string storeType, System.Data.DbType? dbType = 7, int? precision = default, int? scale = default);
new Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping : string * Nullable<System.Data.DbType> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping
Public Sub New (storeType As String, Optional dbType As Nullable(Of DbType) = Nothing, Optional precision As Nullable(Of Integer) = Nothing, Optional scale As Nullable(Of Integer) = Nothing)
Public Sub New (storeType As String, Optional dbType As Nullable(Of DbType) = 7, Optional precision As Nullable(Of Integer) = Nothing, Optional scale As Nullable(Of Integer) = Nothing)

パラメーター

storeType
String

データベースの種類の名前。

dbType
Nullable<DbType>

使用する DbType

precision
Nullable<Int32>

プロパティが格納するように構成されているデータの有効桁数。既定の有効桁数が必要な場合は null。

scale
Nullable<Int32>

プロパティが格納するように構成されているデータのスケール。既定のスケールが必要な場合は null。

適用対象