次の方法で共有


OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity>.HasParameter メソッド

定義

オーバーロード

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

プロパティ名。

戻り値

複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

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>

パラメーターの構成を実行するアクション。

戻り値

複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

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>

パラメーターの構成を実行するアクション。

戻り値

複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

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)。

戻り値

複数の構成呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象