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