RelationalRuntimeModelConvention.ProcessStoredProcedureParameterAnnotations Method

Definition

Updates the stored procedure parameter annotations that will be set on the read-only object.

protected virtual void ProcessStoredProcedureParameterAnnotations (System.Collections.Generic.Dictionary<string,object?> annotations, Microsoft.EntityFrameworkCore.Metadata.IStoredProcedureParameter parameter, Microsoft.EntityFrameworkCore.Metadata.Internal.RuntimeStoredProcedureParameter runtimeParameter, bool runtime);
abstract member ProcessStoredProcedureParameterAnnotations : System.Collections.Generic.Dictionary<string, obj> * Microsoft.EntityFrameworkCore.Metadata.IStoredProcedureParameter * Microsoft.EntityFrameworkCore.Metadata.Internal.RuntimeStoredProcedureParameter * bool -> unit
override this.ProcessStoredProcedureParameterAnnotations : System.Collections.Generic.Dictionary<string, obj> * Microsoft.EntityFrameworkCore.Metadata.IStoredProcedureParameter * Microsoft.EntityFrameworkCore.Metadata.Internal.RuntimeStoredProcedureParameter * bool -> unit
Protected Overridable Sub ProcessStoredProcedureParameterAnnotations (annotations As Dictionary(Of String, Object), parameter As IStoredProcedureParameter, runtimeParameter As RuntimeStoredProcedureParameter, runtime As Boolean)

Parameters

annotations
Dictionary<String,Object>

The annotations to be processed.

parameter
IStoredProcedureParameter

The source stored procedure parameter.

runtimeParameter
Microsoft.EntityFrameworkCore.Metadata.Internal.RuntimeStoredProcedureParameter

The target stored procedure parameter that will contain the annotations.

runtime
Boolean

Indicates whether the given annotations are runtime annotations.

Applies to