次の方法で共有


IValueConverterSelector.Select(Type, Type) メソッド

定義

指定したモデル型の変換に使用できるインスタンスの ValueConverterInfo 一覧を返します。 リストの前面に近いコンバーターは、末尾に近いコンバーターを優先して使用する必要があります。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverterInfo> Select (Type modelClrType, Type providerClrType = default);
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverterInfo> Select (Type modelClrType, Type? providerClrType = default);
abstract member Select : Type * Type -> seq<Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverterInfo>
Public Function Select (modelClrType As Type, Optional providerClrType As Type = Nothing) As IEnumerable(Of ValueConverterInfo)

パラメーター

modelClrType
Type

コンバーターが必要な型。

providerClrType
Type

ターゲットにするストアの種類。または任意の場合は null。

戻り値

使用可能なコンバーター。

注釈

詳細と例については、「 EF Core 値コンバーター 」を参照してください。

適用対象