Udostępnij za pośrednictwem


ReaderColumn.Create Metoda

Definicja

Przeciążenia

Create(Type, Boolean, String, Object)
Przestarzałe.

Tworzy wystąpienie klasy ReaderColumn<T>.

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

Tworzy wystąpienie klasy ReaderColumn<T>.

Create(Type, Boolean, String, Object)

Przestroga

Use method which also takes IPropertyBase.

Tworzy wystąpienie klasy 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

Parametry

type
Type

Typ kolumny.

nullable
Boolean

Wskazuje, czy kolumna może zawierać wartości null.

columnName
String

Nazwa kolumny, jeśli jest używana do uzyskiwania dostępu do wartości kolumn, null w przeciwnym razie.

readFunc
Object

Element System.Func{DbDataReader, Int32[], T} służący do pobierania wartości pola dla tej kolumny.

Zwraca

Wystąpienie elementu ReaderColumn<T>.

Atrybuty

Dotyczy

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

Tworzy wystąpienie klasy 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

Parametry

type
Type

Typ kolumny.

nullable
Boolean

Wskazuje, czy kolumna może zawierać wartości null.

columnName
String

Nazwa kolumny, jeśli jest używana do uzyskiwania dostępu do wartości kolumn, null w przeciwnym razie.

property
IPropertyBase

Właściwość, która jest odczytywana, jeśli istnieje, w przeciwnym razie ma wartość null.

readFunc
Object

Element System.Func{DbDataReader, Int32[], T} służący do pobierania wartości pola dla tej kolumny.

Zwraca

Wystąpienie elementu ReaderColumn<T>.

Dotyczy