Share via


OwnedNavigationTableValuedFunctionBuilder<TOwnerEntity,TDependentEntity>.HasParameter Method

Definition

Returns an object that can be used to configure a parameter with the given name. If no parameter with the given name exists, then a new parameter will be added.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableValuedFunctionBuilder<TOwnerEntity,TDependentEntity> HasParameter (string name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionParameterBuilder> buildAction);
override this.HasParameter : string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionParameterBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableValuedFunctionBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function HasParameter (name As String, buildAction As Action(Of DbFunctionParameterBuilder)) As OwnedNavigationTableValuedFunctionBuilder(Of TOwnerEntity, TDependentEntity)

Parameters

name
String

The parameter name.

buildAction
Action<DbFunctionParameterBuilder>

An action that performs configuration of the parameter.

Returns

The builder to use for further parameter configuration.

Remarks

See Database functions for more information and examples.

Applies to