次の方法で共有


ReaderColumn<T> コンストラクター

定義

オーバーロード

ReaderColumn<T>(Boolean, String, Func<DbDataReader,Int32[],T>)
古い.

ReaderColumn<T> クラスの新しいインスタンスを作成します。

ReaderColumn<T>(Boolean, String, IPropertyBase, Func<DbDataReader,Int32[],T>)

ReaderColumn<T> クラスの新しいインスタンスを作成します。

ReaderColumn<T>(Boolean, String, Func<DbDataReader,Int32[],T>)

注意事項

Use constructor which also takes IPropertyBase.

ReaderColumn<T> クラスの新しいインスタンスを作成します。

public ReaderColumn (bool nullable, string name, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
[System.Obsolete("Use constructor which also takes IPropertyBase.")]
public ReaderColumn (bool nullable, string name, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
[System.Obsolete("Use constructor which also takes IPropertyBase.")]
public ReaderColumn (bool nullable, string? name, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T> : bool * string * Func<System.Data.Common.DbDataReader, int[], 'T> -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T>
[<System.Obsolete("Use constructor which also takes IPropertyBase.")>]
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T> : bool * string * Func<System.Data.Common.DbDataReader, int[], 'T> -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T>
Public Sub New (nullable As Boolean, name As String, getFieldValue As Func(Of DbDataReader, Integer(), T))

パラメーター

nullable
Boolean

列が null 許容かどうかを示す 値。

name
String

列の名前。

getFieldValue
Func<DbDataReader,Int32[],T>

リーダーから列のフィールド値を取得する関数。

属性

適用対象

ReaderColumn<T>(Boolean, String, IPropertyBase, Func<DbDataReader,Int32[],T>)

ReaderColumn<T> クラスの新しいインスタンスを作成します。

public ReaderColumn (bool nullable, string name, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
public ReaderColumn (bool nullable, string? name, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase? property, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T> : bool * string * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase * Func<System.Data.Common.DbDataReader, int[], 'T> -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T>
Public Sub New (nullable As Boolean, name As String, property As IPropertyBase, getFieldValue As Func(Of DbDataReader, Integer(), T))

パラメーター

nullable
Boolean

列が null 許容かどうかを示す 値。

name
String

列の名前。

property
IPropertyBase

読み取られるプロパティ (存在する場合)、それ以外の場合は null。

getFieldValue
Func<DbDataReader,Int32[],T>

リーダーから列のフィールド値を取得する関数。

適用対象