ReaderColumn.Create 메서드

정의

오버로드

Create(Type, Boolean, String, Object)
사용되지 않음.

ReaderColumn<T>의 인스턴스를 만듭니다.

Create(Type, Boolean, String, IPropertyBase, Object)

ReaderColumn<T>의 인스턴스를 만듭니다.

Create(Type, Boolean, String, Object)

주의

Use method which also takes IPropertyBase.

ReaderColumn<T>의 인스턴스를 만듭니다.

public static Microsoft.EntityFrameworkCore.Storage.ReaderColumn Create (Type type, bool nullable, string columnName, object readFunc);
[System.Obsolete("Use method which also takes IPropertyBase.")]
public static Microsoft.EntityFrameworkCore.Storage.ReaderColumn Create (Type type, bool nullable, string columnName, object readFunc);
[System.Obsolete("Use method which also takes IPropertyBase.")]
public static Microsoft.EntityFrameworkCore.Storage.ReaderColumn Create (Type type, bool nullable, string? columnName, object readFunc);
static member Create : Type * bool * string * obj -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn
[<System.Obsolete("Use method which also takes IPropertyBase.")>]
static member Create : Type * bool * string * obj -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn
Public Shared Function Create (type As Type, nullable As Boolean, columnName As String, readFunc As Object) As ReaderColumn

매개 변수

type
Type

열의 유형입니다.

nullable
Boolean

열에 null 값이 포함될 수 있는지 여부를 나타냅니다.

columnName
String

열 값에 액세스하는 데 사용되는 경우 열 이름이고, null 그렇지 않으면 입니다.

readFunc
Object

System.Func{DbDataReader, Int32[], T} 이 열의 필드 값을 가져오는 데 사용되는 입니다.

반환

ReaderColumn<T>의 인스턴스입니다.

특성

적용 대상

Create(Type, Boolean, String, IPropertyBase, Object)

ReaderColumn<T>의 인스턴스를 만듭니다.

public static Microsoft.EntityFrameworkCore.Storage.ReaderColumn Create (Type type, bool nullable, string columnName, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property, object readFunc);
public static Microsoft.EntityFrameworkCore.Storage.ReaderColumn Create (Type type, bool nullable, string? columnName, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase? property, object readFunc);
static member Create : Type * bool * string * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase * obj -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn
Public Shared Function Create (type As Type, nullable As Boolean, columnName As String, property As IPropertyBase, readFunc As Object) As ReaderColumn

매개 변수

type
Type

열의 유형입니다.

nullable
Boolean

열에 null 값이 포함될 수 있는지 여부를 나타냅니다.

columnName
String

열 값에 액세스하는 데 사용되는 경우 열 이름이고, null 그렇지 않으면 입니다.

property
IPropertyBase

읽는 속성이 있으면 이고, 그렇지 않으면 null입니다.

readFunc
Object

System.Func{DbDataReader, Int32[], T} 이 열의 필드 값을 가져오는 데 사용되는 입니다.

반환

ReaderColumn<T>의 인스턴스입니다.

적용 대상