RelationalRuntimeModelConvention.ProcessStoredProcedureResultColumnAnnotations Method

Definition

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

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

Parameters

annotations
Dictionary<String,Object>

The annotations to be processed.

resultColumn
IStoredProcedureResultColumn

The source fstored procedure result column.

runtimeResultColumn
Microsoft.EntityFrameworkCore.Metadata.Internal.RuntimeStoredProcedureResultColumn

The target stored procedure result column that will contain the annotations.

runtime
Boolean

Indicates whether the given annotations are runtime annotations.

Applies to