次の方法で共有


RelationalTypeMappingInfo コンストラクター

定義

オーバーロード

RelationalTypeMappingInfo(IProperty)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(Type, RelationalTypeMapping, String, String, Boolean, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<DbType>)

TypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(Type, String, String, Boolean, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>)

TypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(Type, String, Boolean, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>)

TypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(IReadOnlyList<IProperty>, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(MemberInfo, RelationalTypeMapping, String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(MemberInfo, String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(IElementType, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(RelationalTypeMappingInfo, ValueConverterInfo)

指定ValueConverterInfoした を使用して のRelationalTypeMappingInfo新しいインスタンスを作成します。

RelationalTypeMappingInfo(Type)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(String)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(MemberInfo)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(IReadOnlyList<IProperty>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

RelationalTypeMappingInfo(IProperty)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (property As IProperty)

パラメーター

property
IProperty

マッピングが必要なプロパティ。

適用対象

RelationalTypeMappingInfo(Type, RelationalTypeMapping, String, String, Boolean, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<DbType>)

TypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (Type? type = default, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? elementTypeMapping = default, string? storeTypeName = default, string? storeTypeNameBase = default, bool keyOrIndex = false, bool? unicode = default, int? size = default, bool? rowVersion = default, bool? fixedLength = default, int? precision = default, int? scale = default, System.Data.DbType? dbType = default);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : Type * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * string * string * bool * Nullable<bool> * Nullable<int> * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<System.Data.DbType> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (Optional type As Type = Nothing, Optional elementTypeMapping As RelationalTypeMapping = Nothing, Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional keyOrIndex As Boolean = false, Optional unicode As Nullable(Of Boolean) = Nothing, Optional size As Nullable(Of Integer) = Nothing, Optional rowVersion As Nullable(Of Boolean) = Nothing, Optional fixedLength As Nullable(Of Boolean) = Nothing, Optional precision As Nullable(Of Integer) = Nothing, Optional scale As Nullable(Of Integer) = Nothing, Optional dbType As Nullable(Of DbType) = Nothing)

パラメーター

type
Type

マッピングが必要なモデルの CLR 型。

elementTypeMapping
RelationalTypeMapping

要素の型マッピング (既知の場合)。

storeTypeName
String

データベースの種類名。

storeTypeNameBase
String

プロバイダー固有のリレーショナル型名。ファセットは削除されます。

keyOrIndex
Boolean

の場合 trueは、キーまたはインデックスの特別なマッピングが返される可能性があります。

unicode
Nullable<Boolean>

Unicode または ANSI マッピングを指定します。既定 null の場合は を指定します。

size
Nullable<Int32>

マッピングのサイズを指定するか null 、既定のサイズを指定します。

rowVersion
Nullable<Boolean>

行バージョンを指定します。既定 null の場合は を指定します。

fixedLength
Nullable<Boolean>

固定長マッピングを指定します。既定値の場合 null は を指定します。

precision
Nullable<Int32>

マッピングの有効桁数を指定します。既定 null の場合は有効桁数を指定します。

scale
Nullable<Int32>

マッピングのスケール、または null 既定のスケールを指定します。

dbType
Nullable<DbType>

推奨される DbType、または null (既定値)。

適用対象

RelationalTypeMappingInfo(Type, String, String, Boolean, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>)

TypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (Type type, string storeTypeName = default, string storeTypeNameBase = default, bool keyOrIndex = false, bool? unicode = default, int? size = default, bool? rowVersion = default, bool? fixedLength = default, int? precision = default, int? scale = default);
public RelationalTypeMappingInfo (Type type, string? storeTypeName = default, string? storeTypeNameBase = default, bool keyOrIndex = false, bool? unicode = default, int? size = default, bool? rowVersion = default, bool? fixedLength = default, int? precision = default, int? scale = default);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : Type * string * string * bool * Nullable<bool> * Nullable<int> * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (type As Type, Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional keyOrIndex As Boolean = false, Optional unicode As Nullable(Of Boolean) = Nothing, Optional size As Nullable(Of Integer) = Nothing, Optional rowVersion As Nullable(Of Boolean) = Nothing, Optional fixedLength As Nullable(Of Boolean) = Nothing, Optional precision As Nullable(Of Integer) = Nothing, Optional scale As Nullable(Of Integer) = Nothing)

パラメーター

type
Type

マッピングが必要なモデルの CLR 型。

storeTypeName
String

データベースの種類名。

storeTypeNameBase
String

プロバイダー固有のリレーショナル型名。ファセットは削除されます。

keyOrIndex
Boolean

の場合 trueは、キーまたはインデックスの特別なマッピングが返される可能性があります。

unicode
Nullable<Boolean>

Unicode または ANSI マッピングを指定します。既定 null の場合は を指定します。

size
Nullable<Int32>

マッピングのサイズを指定するか null 、既定のサイズを指定します。

rowVersion
Nullable<Boolean>

行バージョンを指定します。既定 null の場合は を指定します。

fixedLength
Nullable<Boolean>

固定長マッピングを指定します。既定値の場合 null は を指定します。

precision
Nullable<Int32>

マッピングの有効桁数を指定します。既定 null の場合は有効桁数を指定します。

scale
Nullable<Int32>

マッピングのスケール、または null 既定のスケールを指定します。

適用対象

RelationalTypeMappingInfo(Type, String, Boolean, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>)

TypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (Type type, string storeTypeName, bool keyOrIndex, bool? unicode, int? size, bool? rowVersion, bool? fixedLength, int? precision, int? scale);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : Type * string * bool * Nullable<bool> * Nullable<int> * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (type As Type, storeTypeName As String, keyOrIndex As Boolean, unicode As Nullable(Of Boolean), size As Nullable(Of Integer), rowVersion As Nullable(Of Boolean), fixedLength As Nullable(Of Boolean), precision As Nullable(Of Integer), scale As Nullable(Of Integer))

パラメーター

type
Type

マッピングが必要なモデルの CLR 型。

storeTypeName
String

データベースの種類名。

keyOrIndex
Boolean

の場合 trueは、キーまたはインデックスの特別なマッピングが返される可能性があります。

unicode
Nullable<Boolean>

Unicode または ANSI マッピングを指定します。既定 null の場合は を指定します。

size
Nullable<Int32>

マッピングのサイズを指定するか null 、既定のサイズを指定します。

rowVersion
Nullable<Boolean>

行バージョンを指定します。既定 null の場合は を指定します。

fixedLength
Nullable<Boolean>

固定長マッピングを指定します。既定値の場合 null は を指定します。

precision
Nullable<Int32>

マッピングの有効桁数を指定します。既定 null の場合は有効桁数を指定します。

scale
Nullable<Int32>

マッピングのスケール、または null 既定のスケールを指定します。

適用対象

RelationalTypeMappingInfo(IReadOnlyList<IProperty>, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> principals, string storeTypeName = default, string storeTypeNameBase = default, bool? fallbackUnicode = default, bool? fixedLength = default, int? fallbackSize = default, int? fallbackPrecision = default, int? fallbackScale = default);
public RelationalTypeMappingInfo (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> principals, string? storeTypeName = default, string? storeTypeNameBase = default, bool? fallbackUnicode = default, bool? fixedLength = default, int? fallbackSize = default, int? fallbackPrecision = default, int? fallbackScale = default);
public RelationalTypeMappingInfo (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> principals, string? storeTypeName = default, string? storeTypeNameBase = default, bool? fallbackUnicode = default, bool? fallbackFixedLength = default, int? fallbackSize = default, int? fallbackPrecision = default, int? fallbackScale = default);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> * string * string * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> * string * string * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (principals As IReadOnlyList(Of IProperty), Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional fallbackUnicode As Nullable(Of Boolean) = Nothing, Optional fixedLength As Nullable(Of Boolean) = Nothing, Optional fallbackSize As Nullable(Of Integer) = Nothing, Optional fallbackPrecision As Nullable(Of Integer) = Nothing, Optional fallbackScale As Nullable(Of Integer) = Nothing)
Public Sub New (principals As IReadOnlyList(Of IProperty), Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional fallbackUnicode As Nullable(Of Boolean) = Nothing, Optional fallbackFixedLength As Nullable(Of Boolean) = Nothing, Optional fallbackSize As Nullable(Of Integer) = Nothing, Optional fallbackPrecision As Nullable(Of Integer) = Nothing, Optional fallbackScale As Nullable(Of Integer) = Nothing)

パラメーター

principals
IReadOnlyList<IProperty>

マッピングが必要なプロパティのプリンシパル プロパティ チェーン。

storeTypeName
String

マッピングが必要なプロバイダー固有のリレーショナル型名。

storeTypeNameBase
String

プロバイダー固有のリレーショナル型名。ファセットは削除されます。

fallbackUnicode
Nullable<Boolean>

マッピングまたは既定の Unicode または null ANSI を指定します。

fixedLengthfallbackFixedLength
Nullable<Boolean>

固定長マッピングを指定します。既定値の場合 null は を指定します。

fallbackSize
Nullable<Int32>

コア レベルで見つからない場合、または null 既定の場合は、マッピングのサイズを指定します。

fallbackPrecision
Nullable<Int32>

コア レベルで見つからない場合、または null 既定の場合は、マッピングの有効桁数を指定します。

fallbackScale
Nullable<Int32>

コア レベルでスケールが見つからない場合、または null 既定の場合は、マッピングのスケールを指定します。

適用対象

RelationalTypeMappingInfo(MemberInfo, RelationalTypeMapping, String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (System.Reflection.MemberInfo member, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? elementTypeMapping = default, string? storeTypeName = default, string? storeTypeNameBase = default, bool? unicode = default, int? size = default, int? precision = default, int? scale = default);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : System.Reflection.MemberInfo * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * string * string * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (member As MemberInfo, Optional elementTypeMapping As RelationalTypeMapping = Nothing, Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional unicode As Nullable(Of Boolean) = Nothing, Optional size As Nullable(Of Integer) = Nothing, Optional precision As Nullable(Of Integer) = Nothing, Optional scale As Nullable(Of Integer) = Nothing)

パラメーター

member
MemberInfo

マッピングが必要なプロパティまたはフィールド。

elementTypeMapping
RelationalTypeMapping

要素の型マッピング (既知の場合)。

storeTypeName
String

マッピングが必要なプロバイダー固有のリレーショナル型名。

storeTypeNameBase
String

プロバイダー固有のリレーショナル型名。ファセットは削除されます。

unicode
Nullable<Boolean>

Unicode または ANSI マッピングを指定します。既定 null の場合は を指定します。

size
Nullable<Int32>

マッピングのサイズを指定するか null 、既定のサイズを指定します。

precision
Nullable<Int32>

マッピングの有効桁数を指定します。既定 null の場合は有効桁数を指定します。

scale
Nullable<Int32>

マッピングのスケール、または null 既定のスケールを指定します。

適用対象

RelationalTypeMappingInfo(MemberInfo, String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (System.Reflection.MemberInfo member, string storeTypeName = default, string storeTypeNameBase = default, bool? unicode = default, int? size = default, int? precision = default, int? scale = default);
public RelationalTypeMappingInfo (System.Reflection.MemberInfo member, string? storeTypeName = default, string? storeTypeNameBase = default, bool? unicode = default, int? size = default, int? precision = default, int? scale = default);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : System.Reflection.MemberInfo * string * string * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (member As MemberInfo, Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional unicode As Nullable(Of Boolean) = Nothing, Optional size As Nullable(Of Integer) = Nothing, Optional precision As Nullable(Of Integer) = Nothing, Optional scale As Nullable(Of Integer) = Nothing)

パラメーター

member
MemberInfo

マッピングが必要なプロパティまたはフィールド。

storeTypeName
String

マッピングが必要なプロバイダー固有のリレーショナル型名。

storeTypeNameBase
String

プロバイダー固有のリレーショナル型名。ファセットは削除されます。

unicode
Nullable<Boolean>

Unicode または ANSI マッピングを指定します。既定 null の場合は を指定します。

size
Nullable<Int32>

マッピングのサイズを指定するか null 、既定のサイズを指定します。

precision
Nullable<Int32>

マッピングの有効桁数を指定します。既定 null の場合は有効桁数を指定します。

scale
Nullable<Int32>

マッピングのスケール、または null 既定のスケールを指定します。

適用対象

RelationalTypeMappingInfo(IElementType, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (Microsoft.EntityFrameworkCore.Metadata.IElementType elementType, string? storeTypeName = default, string? storeTypeNameBase = default, bool? fallbackUnicode = default, bool? fallbackFixedLength = default, int? fallbackSize = default, int? fallbackPrecision = default, int? fallbackScale = default);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : Microsoft.EntityFrameworkCore.Metadata.IElementType * string * string * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (elementType As IElementType, Optional storeTypeName As String = Nothing, Optional storeTypeNameBase As String = Nothing, Optional fallbackUnicode As Nullable(Of Boolean) = Nothing, Optional fallbackFixedLength As Nullable(Of Boolean) = Nothing, Optional fallbackSize As Nullable(Of Integer) = Nothing, Optional fallbackPrecision As Nullable(Of Integer) = Nothing, Optional fallbackScale As Nullable(Of Integer) = Nothing)

パラメーター

elementType
IElementType

マッピングが必要なコレクション要素。

storeTypeName
String

マッピングが必要なプロバイダー固有のリレーショナル型名。

storeTypeNameBase
String

プロバイダー固有のリレーショナル型名。ファセットは削除されます。

fallbackUnicode
Nullable<Boolean>

マッピングまたは既定値に Unicode または null ANSI を指定します。

fallbackFixedLength
Nullable<Boolean>

固定長マッピングを指定します。既定値の場合 null は を指定します。

fallbackSize
Nullable<Int32>

コア レベルでマッピングが見つからない場合、または null 既定値の場合は、マッピングのサイズを指定します。

fallbackPrecision
Nullable<Int32>

コア レベルでマッピングが見つからない場合、または null 既定値の場合は、マッピングの有効桁数を指定します。

fallbackScale
Nullable<Int32>

コア レベルでスケールが見つからない場合、または null 既定値の場合は、マッピングのスケールを指定します。

適用対象

RelationalTypeMappingInfo(RelationalTypeMappingInfo, ValueConverterInfo)

指定ValueConverterInfoした を使用して のRelationalTypeMappingInfo新しいインスタンスを作成します。

public RelationalTypeMappingInfo (in Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo source, in Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverterInfo converter);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : RelationalTypeMappingInfo * ValueConverterInfo -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (ByRef source As RelationalTypeMappingInfo, ByRef converter As ValueConverterInfo)

パラメーター

source
RelationalTypeMappingInfo

ソース情報。

converter
ValueConverterInfo

適用するコンバーター。

適用対象

RelationalTypeMappingInfo(Type)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (Type type);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : Type -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (type As Type)

パラメーター

type
Type

マッピングが必要なモデル内の CLR 型。

適用対象

RelationalTypeMappingInfo(String)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (string storeTypeName);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : string -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (storeTypeName As String)

パラメーター

storeTypeName
String

マッピングが必要なプロバイダー固有のリレーショナル型名。

適用対象

RelationalTypeMappingInfo(MemberInfo)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (System.Reflection.MemberInfo member);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (member As MemberInfo)

パラメーター

member
MemberInfo

マッピングが必要なプロパティまたはフィールド。

適用対象

RelationalTypeMappingInfo(IReadOnlyList<IProperty>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> principals);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (principals As IReadOnlyList(Of IProperty))

パラメーター

principals
IReadOnlyList<IProperty>

マッピングが必要なプロパティのプリンシパル プロパティ チェーン。

適用対象

RelationalTypeMappingInfo(String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

RelationalTypeMappingInfo の新しいインスタンスを作成します。

public RelationalTypeMappingInfo (string storeTypeName, string storeTypeNameBase, bool? unicode, int? size, int? precision, int? scale);
new Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo : string * string * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo
Public Sub New (storeTypeName As String, storeTypeNameBase As String, unicode As Nullable(Of Boolean), size As Nullable(Of Integer), precision As Nullable(Of Integer), scale As Nullable(Of Integer))

パラメーター

storeTypeName
String

マッピングが必要なプロバイダー固有のリレーショナル型名。

storeTypeNameBase
String

ファセットが削除されたプロバイダー固有のリレーショナル型名。

unicode
Nullable<Boolean>

Unicode または ANSI マッピングを指定します。既定 null では を指定します。

size
Nullable<Int32>

マッピングのサイズ、または null 既定のサイズを指定します。

precision
Nullable<Int32>

マッピングの有効桁数を指定します。既定 null の場合は有効桁数を指定します。

scale
Nullable<Int32>

マッピングのスケール、または null 既定のスケールを指定します。

適用対象