Share via


OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity>.HasResultColumn 메서드

정의

오버로드

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.

적용 대상