ReaderColumn.Create Yöntem

Tanım

Aşırı Yüklemeler

Create(Type, Boolean, String, Object)
Geçersiz.

öğesinin bir örneğini ReaderColumn<T>oluşturur.

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

öğesinin bir örneğini ReaderColumn<T>oluşturur.

Create(Type, Boolean, String, Object)

Dikkat

Use method which also takes IPropertyBase.

öğesinin bir örneğini ReaderColumn<T>oluşturur.

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

Parametreler

type
Type

Sütunun türü.

nullable
Boolean

Sütunun null değer içerip içeremeyeceğini gösterir.

columnName
String

Sütun değerlerine erişmek için kullanılıyorsa sütun adı, null aksi takdirde.

readFunc
Object

System.Func{DbDataReader, Int32[], T} Bu sütunun alan değerini almak için kullanılan.

Döndürülenler

ReaderColumn<T> öğesinin bir örneği.

Öznitelikler

Şunlara uygulanır

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

öğesinin bir örneğini ReaderColumn<T>oluşturur.

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

Parametreler

type
Type

Sütunun türü.

nullable
Boolean

Sütunun null değer içerip içeremeyeceğini gösterir.

columnName
String

Sütun değerlerine erişmek için kullanılıyorsa sütun adı, null aksi takdirde.

property
IPropertyBase

Varsa okunan özellik, aksi takdirde null.

readFunc
Object

System.Func{DbDataReader, Int32[], T} Bu sütunun alan değerini almak için kullanılan.

Döndürülenler

ReaderColumn<T> öğesinin bir örneği.

Şunlara uygulanır