ReaderColumn.Create Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Create(Type, Boolean, String, Object) |
Obsolète.
Crée une instance de ReaderColumn<T>. |
Create(Type, Boolean, String, IPropertyBase, Object) |
Crée une instance de ReaderColumn<T>. |
Create(Type, Boolean, String, Object)
Attention
Use method which also takes IPropertyBase.
Crée une instance de 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
Paramètres
- type
- Type
Type de la colonne.
- nullable
- Boolean
Indique si la colonne peut contenir des valeurs null
.
- columnName
- String
Nom de colonne s’il est utilisé pour accéder aux valeurs de colonne, null
sinon.
- readFunc
- Object
utilisé System.Func{DbDataReader, Int32[], T} pour obtenir la valeur de champ de cette colonne.
Retours
Instance de ReaderColumn<T>.
- Attributs
S’applique à
Create(Type, Boolean, String, IPropertyBase, Object)
Crée une instance de 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
Paramètres
- type
- Type
Type de la colonne.
- nullable
- Boolean
Indique si la colonne peut contenir des valeurs null
.
- columnName
- String
Nom de colonne s’il est utilisé pour accéder aux valeurs de colonne, null
sinon.
- property
- IPropertyBase
Propriété en cours de lecture le cas échéant, null dans le cas contraire.
- readFunc
- Object
utilisé System.Func{DbDataReader, Int32[], T} pour obtenir la valeur de champ de cette colonne.
Retours
Instance de ReaderColumn<T>.