次の方法で共有


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。それ以外の場合は null。

readFunc
Object

System.Func{DbDataReader, Int32[], T}この列のフィールド値を取得するために使用される 。

戻り値

ReaderColumn<T> のインスタンス。

適用対象