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。
- readFunc
- Object
, System.Func{DbDataReader, Int32[], T} 用來取得這個資料行的域值。
傳回
ReaderColumn<T> 的執行個體。