IReadOnlyStoredProcedure Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a stored procedure in a model.
public interface IReadOnlyStoredProcedure : Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable
type IReadOnlyStoredProcedure = interface
interface IReadOnlyAnnotatable
Public Interface IReadOnlyStoredProcedure
Implements IReadOnlyAnnotatable
- Derived
- Implements
Properties
EntityType |
Gets the entity type in which this stored procedure is defined. |
IsRowsAffectedReturned |
Gets a value indicating whether this stored procedure returns the number of rows affected. |
Item[String] |
Gets the value of the annotation with the given name, returning |
Name |
Gets the name of the stored procedure in the database. |
Parameters |
Gets the parameters for this stored procedure. |
ResultColumns |
Gets the columns of the result for this stored procedure. |
Schema |
Gets the schema of the stored procedure in the database. |
Methods
AnnotationsToDebugString(Int32) |
Gets the debug string for all annotations declared on the object. (Inherited from IReadOnlyAnnotatable) |
FindAnnotation(String) |
Gets the annotation with the given name, returning |
FindOriginalValueParameter(String) |
Returns the original value parameter corresponding to the given property. |
FindParameter(String) |
Returns the parameter corresponding to the given property. |
FindResultColumn(String) |
Returns the result column corresponding to the given property. |
FindRowsAffectedParameter() |
Returns the rows affected parameter. |
FindRowsAffectedResultColumn() |
Returns the rows affected result column. |
GetAnnotation(String) |
Gets the annotation with the given name, throwing if it does not exist. (Inherited from IReadOnlyAnnotatable) |
GetAnnotations() |
Gets all annotations on the current object. (Inherited from IReadOnlyAnnotatable) |
GetSchemaQualifiedName() |
Returns the name of the stored procedure prepended by the schema
or |
GetStoreIdentifier() |
Returns the store identifier of this stored procedure. |
ToDebugString(MetadataDebugStringOptions, Int32) |
Creates a human-readable representation of the given metadata. Warning: Do not rely on the format of the returned string. It is designed for debugging only and may change arbitrarily between releases. |
Applies to
Entity Framework