IConventionStoredProcedure.AddOriginalValueParameter(String, Boolean) Method

Definition

Adds a new parameter that will hold the original value of the property with the given name.

public Microsoft.EntityFrameworkCore.Metadata.IConventionStoredProcedureParameter? AddOriginalValueParameter (string propertyName, bool fromDataAnnotation = false);
abstract member AddOriginalValueParameter : string * bool -> Microsoft.EntityFrameworkCore.Metadata.IConventionStoredProcedureParameter
Public Function AddOriginalValueParameter (propertyName As String, Optional fromDataAnnotation As Boolean = false) As IConventionStoredProcedureParameter

Parameters

propertyName
String

The name of the corresponding property.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The added parameter.

Applies to