ReaderColumn.Create メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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> のインスタンス。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Entity Framework