ReaderColumn Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ReaderColumn(Type, Boolean, String) |
Obsolete.
Creates a new instance of the ReaderColumn class. |
ReaderColumn(Type, Boolean, String, IPropertyBase) |
Creates a new instance of the ReaderColumn class. |
ReaderColumn(Type, Boolean, String)
Caution
Use constructor which also takes IPropertyBase.
Creates a new instance of the ReaderColumn class.
protected ReaderColumn (Type type, bool nullable, string name);
[System.Obsolete("Use constructor which also takes IPropertyBase.")]
protected ReaderColumn (Type type, bool nullable, string name);
[System.Obsolete("Use constructor which also takes IPropertyBase.")]
protected ReaderColumn (Type type, bool nullable, string? name);
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn : Type * bool * string -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn
[<System.Obsolete("Use constructor which also takes IPropertyBase.")>]
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn : Type * bool * string -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn
Protected Sub New (type As Type, nullable As Boolean, name As String)
Parameters
- type
- Type
The CLR type of the column.
- nullable
- Boolean
A value indicating if the column is nullable.
- name
- String
The name of the column.
- Attributes
Applies to
ReaderColumn(Type, Boolean, String, IPropertyBase)
Creates a new instance of the ReaderColumn class.
protected ReaderColumn (Type type, bool nullable, string name, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property);
protected ReaderColumn (Type type, bool nullable, string? name, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase? property);
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn : Type * bool * string * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn
Protected Sub New (type As Type, nullable As Boolean, name As String, property As IPropertyBase)
Parameters
- type
- Type
The CLR type of the column.
- nullable
- Boolean
A value indicating if the column is nullable.
- name
- String
The name of the column.
- property
- IPropertyBase
The property being read if any, null otherwise.
Applies to
Entity Framework