Table of Contents

Class RuntimeStoredProcedureParameter

Namespace
Microsoft.EntityFrameworkCore.Metadata.Internal
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

Represents a stored procedure parameter.

public class RuntimeStoredProcedureParameter : AnnotatableBase, IRuntimeStoredProcedureParameter, IStoredProcedureParameter, IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IAnnotatable
Inheritance
RuntimeStoredProcedureParameter
Implements
IReadOnlyAnnotatable
IAnnotatable

Constructors

RuntimeStoredProcedureParameter(RuntimeStoredProcedure, string, ParameterDirection, bool, string?, bool?)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public RuntimeStoredProcedureParameter(RuntimeStoredProcedure storedProcedure, string name, ParameterDirection direction, bool forRowsAffected, string? propertyName, bool? forOriginalValue)

Parameters

storedProcedure RuntimeStoredProcedure
name string
direction ParameterDirection
forRowsAffected bool
propertyName string
forOriginalValue bool?

Properties

DebugView

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public virtual DebugView DebugView { get; }

Property Value

DebugView

StoredProcedure

Gets the stored procedure to which this parameter belongs.

public virtual RuntimeStoredProcedure StoredProcedure { get; }

Property Value

RuntimeStoredProcedure

Methods

ToString()

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public override string ToString()

Returns

string