Sdílet prostřednictvím


OwnedNavigationStoredProcedureBuilder<TOwnerEntity,TDependentEntity>.HasParameter Metoda

Definice

Přetížení

HasParameter(String)

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

HasParameter(String, Action<StoredProcedureParameterBuilder>)

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

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

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

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

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

HasParameter(String)

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

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)

Parametry

propertyName
String

Název vlastnosti

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání konfigurace.

Platí pro

HasParameter(String, Action<StoredProcedureParameterBuilder>)

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

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)

Parametry

propertyName
String

Název parametru.

buildAction
Action<StoredProcedureParameterBuilder>

Akce, která provádí konfiguraci parametru .

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání konfigurace.

Platí pro

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

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

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)

Parametry typu

TProperty

Parametry

propertyExpression
Expression<Func<TDependentEntity,TProperty>>

Výraz lambda představující vlastnost, která se má nakonfigurovat (blog => blog.Url).

buildAction
Action<StoredProcedureParameterBuilder>

Akce, která provádí konfiguraci parametru .

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání konfigurace.

Platí pro

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

Nakonfiguruje nový parametr, pokud neexistuje žádný parametr mapovaný na danou vlastnost.

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)

Parametry typu

TProperty

Parametry

propertyExpression
Expression<Func<TDependentEntity,TProperty>>

Výraz lambda představující vlastnost, která se má nakonfigurovat (blog => blog.Url).

Návraty

Stejná instance tvůrce, aby bylo možné zřetězených více volání konfigurace.

Platí pro