ReaderColumn<T> 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ReaderColumn<T>(Boolean, String, Func<DbDataReader,Int32[],T>) |
사용되지 않음.
ReaderColumn<T> 클래스의 새 인스턴스를 만듭니다. |
ReaderColumn<T>(Boolean, String, IPropertyBase, Func<DbDataReader,Int32[],T>) |
ReaderColumn<T> 클래스의 새 인스턴스를 만듭니다. |
ReaderColumn<T>(Boolean, String, Func<DbDataReader,Int32[],T>)
주의
Use constructor which also takes IPropertyBase.
ReaderColumn<T> 클래스의 새 인스턴스를 만듭니다.
public ReaderColumn (bool nullable, string name, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
[System.Obsolete("Use constructor which also takes IPropertyBase.")]
public ReaderColumn (bool nullable, string name, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
[System.Obsolete("Use constructor which also takes IPropertyBase.")]
public ReaderColumn (bool nullable, string? name, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T> : bool * string * Func<System.Data.Common.DbDataReader, int[], 'T> -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T>
[<System.Obsolete("Use constructor which also takes IPropertyBase.")>]
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T> : bool * string * Func<System.Data.Common.DbDataReader, int[], 'T> -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T>
Public Sub New (nullable As Boolean, name As String, getFieldValue As Func(Of DbDataReader, Integer(), T))
매개 변수
- nullable
- Boolean
열이 null 허용 여부를 나타내는 값입니다.
- name
- String
열 이름입니다.
- getFieldValue
- Func<DbDataReader,Int32[],T>
판독기에서 열의 필드 값을 가져오는 함수입니다.
- 특성
적용 대상
ReaderColumn<T>(Boolean, String, IPropertyBase, Func<DbDataReader,Int32[],T>)
ReaderColumn<T> 클래스의 새 인스턴스를 만듭니다.
public ReaderColumn (bool nullable, string name, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase property, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
public ReaderColumn (bool nullable, string? name, Microsoft.EntityFrameworkCore.Metadata.IPropertyBase? property, Func<System.Data.Common.DbDataReader,int[],T> getFieldValue);
new Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T> : bool * string * Microsoft.EntityFrameworkCore.Metadata.IPropertyBase * Func<System.Data.Common.DbDataReader, int[], 'T> -> Microsoft.EntityFrameworkCore.Storage.ReaderColumn<'T>
Public Sub New (nullable As Boolean, name As String, property As IPropertyBase, getFieldValue As Func(Of DbDataReader, Integer(), T))
매개 변수
- nullable
- Boolean
열이 null 허용 여부를 나타내는 값입니다.
- name
- String
열 이름입니다.
- property
- IPropertyBase
읽는 속성이 있으면 이고, 그렇지 않으면 null입니다.
- getFieldValue
- Func<DbDataReader,Int32[],T>
판독기에서 열의 필드 값을 가져오는 함수입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework