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>

판독기에서 열의 필드 값을 가져오는 함수입니다.

적용 대상