次の方法で共有


RelationalTypeMapper.FindMapping メソッド

定義

オーバーロード

FindMapping(IProperty)

指定したプロパティのリレーショナル データベースの種類を取得します。 マッピングが見つからない場合は null を返します。

FindMapping(String)

指定されたデータベースの種類を表すマッピングを取得します。 マッピングが見つからない場合は null を返します。

FindMapping(Type)

特定の .NET 型のリレーショナル データベース型を取得します。 マッピングが見つからない場合は null を返します。

FindMapping(IProperty)

指定したプロパティのリレーショナル データベースの種類を取得します。 マッピングが見つからない場合は null を返します。

public virtual Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping FindMapping (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member FindMapping : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping
override this.FindMapping : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping
Public Overridable Function FindMapping (property As IProperty) As RelationalTypeMapping

パラメーター

property
IProperty

マッピングを取得するプロパティ。

戻り値

使用する型マッピング。

実装

適用対象

FindMapping(String)

指定されたデータベースの種類を表すマッピングを取得します。 マッピングが見つからない場合は null を返します。

public virtual Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping FindMapping (string storeType);
abstract member FindMapping : string -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping
override this.FindMapping : string -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping
Public Overridable Function FindMapping (storeType As String) As RelationalTypeMapping

パラメーター

storeType
String

マッピングを取得する型。

戻り値

使用する型マッピング。

実装

適用対象

FindMapping(Type)

特定の .NET 型のリレーショナル データベース型を取得します。 マッピングが見つからない場合は null を返します。

public virtual Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping FindMapping (Type clrType);
abstract member FindMapping : Type -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping
override this.FindMapping : Type -> Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping
Public Overridable Function FindMapping (clrType As Type) As RelationalTypeMapping

パラメーター

clrType
Type

マッピングを取得する型。

戻り値

使用する型マッピング。

実装

適用対象