次の方法で共有


StoredProcedureBuilder<TEntity>.HasParameter メソッド

定義

オーバーロード

HasParameter(String)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

HasParameter(String, Action<StoredProcedureParameterBuilder>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

HasParameter<TDerivedEntity,TProperty>(Expression<Func<TDerivedEntity,TProperty>>, Action<StoredProcedureParameterBuilder>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

HasParameter<TDerivedEntity,TProperty>(Expression<Func<TDerivedEntity,TProperty>>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

HasParameter<TProperty>(Expression<Func<TEntity,TProperty>>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

HasParameter<TProperty>(Expression<Func<TEntity,TProperty>>, Action<StoredProcedureParameterBuilder>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

HasParameter(String)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<TEntity> HasParameter (string propertyName);
override this.HasParameter : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function HasParameter (propertyName As String) As StoredProcedureBuilder(Of TEntity)

パラメーター

propertyName
String

プロパティ名。

戻り値

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

適用対象

HasParameter(String, Action<StoredProcedureParameterBuilder>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<TEntity> HasParameter (string propertyName, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureParameterBuilder> buildAction);
override this.HasParameter : string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureParameterBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function HasParameter (propertyName As String, buildAction As Action(Of StoredProcedureParameterBuilder)) As StoredProcedureBuilder(Of TEntity)

パラメーター

propertyName
String

パラメーター名。

buildAction
Action<StoredProcedureParameterBuilder>

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

戻り値

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

適用対象

HasParameter<TDerivedEntity,TProperty>(Expression<Func<TDerivedEntity,TProperty>>, Action<StoredProcedureParameterBuilder>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<TEntity> HasParameter<TDerivedEntity,TProperty> (System.Linq.Expressions.Expression<Func<TDerivedEntity,TProperty>> propertyExpression, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureParameterBuilder> buildAction) where TDerivedEntity : class, TEntity;
override this.HasParameter : System.Linq.Expressions.Expression<Func<#'Entity, 'Property>> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureParameterBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function HasParameter(Of TDerivedEntity As {Class, TEntity}, TProperty As {Class, TEntity}) (propertyExpression As Expression(Of Func(Of TDerivedEntity, TProperty)), buildAction As Action(Of StoredProcedureParameterBuilder)) As StoredProcedureBuilder(Of TEntity)

型パラメーター

TDerivedEntity
TProperty

パラメーター

propertyExpression
Expression<Func<TDerivedEntity,TProperty>>

構成するプロパティを表すラムダ式 (blog => blog.Url)。

buildAction
Action<StoredProcedureParameterBuilder>

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

戻り値

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

適用対象

HasParameter<TDerivedEntity,TProperty>(Expression<Func<TDerivedEntity,TProperty>>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<TEntity> HasParameter<TDerivedEntity,TProperty> (System.Linq.Expressions.Expression<Func<TDerivedEntity,TProperty>> propertyExpression) where TDerivedEntity : class, TEntity;
override this.HasParameter : System.Linq.Expressions.Expression<Func<#'Entity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function HasParameter(Of TDerivedEntity As {Class, TEntity}, TProperty As {Class, TEntity}) (propertyExpression As Expression(Of Func(Of TDerivedEntity, TProperty))) As StoredProcedureBuilder(Of TEntity)

型パラメーター

TDerivedEntity
TProperty

パラメーター

propertyExpression
Expression<Func<TDerivedEntity,TProperty>>

構成するプロパティを表すラムダ式 (blog => blog.Url)。

戻り値

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

適用対象

HasParameter<TProperty>(Expression<Func<TEntity,TProperty>>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<TEntity> HasParameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> propertyExpression);
override this.HasParameter : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function HasParameter(Of TProperty) (propertyExpression As Expression(Of Func(Of TEntity, TProperty))) As StoredProcedureBuilder(Of TEntity)

型パラメーター

TProperty

パラメーター

propertyExpression
Expression<Func<TEntity,TProperty>>

構成するプロパティを表すラムダ式 (blog => blog.Url)。

戻り値

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

適用対象

HasParameter<TProperty>(Expression<Func<TEntity,TProperty>>, Action<StoredProcedureParameterBuilder>)

指定されたプロパティにマップされたパラメーターが存在しない場合は、新しいパラメーターを構成します。

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<TEntity> HasParameter<TProperty> (System.Linq.Expressions.Expression<Func<TEntity,TProperty>> propertyExpression, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureParameterBuilder> buildAction);
override this.HasParameter : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureParameterBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.StoredProcedureBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function HasParameter(Of TProperty) (propertyExpression As Expression(Of Func(Of TEntity, TProperty)), buildAction As Action(Of StoredProcedureParameterBuilder)) As StoredProcedureBuilder(Of TEntity)

型パラメーター

TProperty

パラメーター

propertyExpression
Expression<Func<TEntity,TProperty>>

構成するプロパティを表すラムダ式 (blog => blog.Url)。

buildAction
Action<StoredProcedureParameterBuilder>

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

戻り値

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

適用対象