OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity>.HasResultColumn 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
HasResultColumn(String) |
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다. |
HasResultColumn(String, Action<StoredProcedureResultColumnBuilder>) |
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다. |
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>) |
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다. |
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>, Action<StoredProcedureResultColumnBuilder>) |
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다. |
HasResultColumn(String)
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn (string propertyName);
override this.HasResultColumn : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn (propertyName As String) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
매개 변수
- propertyName
- String
속성 이름입니다.
반환
여러 구성 호출을 연결할 수 있도록 동일한 작성기가 instance.
적용 대상
HasResultColumn(String, Action<StoredProcedureResultColumnBuilder>)
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn (string propertyName, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> buildAction);
override this.HasResultColumn : string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn (propertyName As String, buildAction As Action(Of StoredProcedureResultColumnBuilder)) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
매개 변수
- propertyName
- String
속성 이름입니다.
- buildAction
- Action<StoredProcedureResultColumnBuilder>
열의 구성을 수행하는 작업입니다.
반환
여러 구성 호출을 연결할 수 있도록 동일한 작성기가 instance.
적용 대상
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>)
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn<TProperty> (System.Linq.Expressions.Expression<Func<TDependentEntity,TProperty>> propertyExpression);
override this.HasResultColumn : System.Linq.Expressions.Expression<Func<'DependentEntity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn(Of TProperty) (propertyExpression As Expression(Of Func(Of TDependentEntity, TProperty))) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TProperty
매개 변수
- propertyExpression
- Expression<Func<TDependentEntity,TProperty>>
구성할 속성(blog => blog.Url
)을 나타내는 람다 식입니다.
반환
여러 구성 호출을 연결할 수 있도록 동일한 작성기가 instance.
적용 대상
HasResultColumn<TProperty>(Expression<Func<TDependentEntity,TProperty>>, Action<StoredProcedureResultColumnBuilder>)
이 저장 프로시저에 대한 결과의 새 열을 구성합니다. 데이터베이스에서 생성된 열에 사용됩니다.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity> HasResultColumn<TProperty> (System.Linq.Expressions.Expression<Func<TDependentEntity,TProperty>> propertyExpression, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> buildAction);
override this.HasResultColumn : System.Linq.Expressions.Expression<Func<'DependentEntity, 'Property>> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureResultColumnBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationStoredProcedureBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasResultColumn(Of TProperty) (propertyExpression As Expression(Of Func(Of TDependentEntity, TProperty)), buildAction As Action(Of StoredProcedureResultColumnBuilder)) As OwnedNavigationStoredProcedureBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TProperty
매개 변수
- propertyExpression
- Expression<Func<TDependentEntity,TProperty>>
구성할 속성(blog => blog.Url
)을 나타내는 람다 식입니다.
- buildAction
- Action<StoredProcedureResultColumnBuilder>
열의 구성을 수행하는 작업입니다.
반환
여러 구성 호출을 연결할 수 있도록 동일한 작성기가 instance.
적용 대상
Entity Framework