IDatabaseProcedure Interface
Models a database stored procedure.
Namespace: Microsoft.Data.Schema.SchemaModel.Abstract
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Interface IDatabaseProcedure _
Inherits IModelElement, IModelPropertyContainer, IModelEntity, IModelAnnotationHolder
public interface IDatabaseProcedure : IModelElement,
IModelPropertyContainer, IModelEntity, IModelAnnotationHolder
public interface class IDatabaseProcedure : IModelElement,
IModelPropertyContainer, IModelEntity, IModelAnnotationHolder
type IDatabaseProcedure =
interface
interface IModelElement
interface IModelPropertyContainer
interface IModelEntity
interface IModelAnnotationHolder
end
public interface IDatabaseProcedure extends IModelElement, IModelPropertyContainer, IModelEntity, IModelAnnotationHolder
The IDatabaseProcedure type exposes the following members.
Properties
Name | Description | |
---|---|---|
BodyDependencies | Gets the collection of elements that are referenced by the body of the procedure. | |
ElementClass | Gets the metadata class for an element. (Inherited from IModelElement.) | |
Model | Gets the model reference. (Inherited from IModelEntity.) | |
Name | Gets or sets the name of the element. (Inherited from IModelElement.) | |
ResolutionStatus | Gets or sets the value of the model element resolution status. (Inherited from IModelElement.) | |
SourceCodePositions | Gets the list of sources that define this element. (Inherited from IModelElement.) | |
ValidationStatus | Gets or sets the value of the model element validation status. (Inherited from IModelElement.) |
Top
Methods
Name | Description | |
---|---|---|
AddAnnotation | Adds the given annotation to this element. (Inherited from IModelAnnotationHolder.) | |
Delete | Deletes this instance from the model. (Inherited from IModelElement.) | |
GetAnnotations() | Returns a list of annotations attached to this element. (Inherited from IModelAnnotationHolder.) | |
GetAnnotations(Type) | Returns a list of attached annotations of the given type. (Inherited from IModelAnnotationHolder.) | |
GetAnnotations(ModelIdentifier) | Returns a list of attached annotations that have the given identifier. (Inherited from IModelAnnotationHolder.) | |
GetAnnotations(ModelIdentifier, Type) | (Inherited from IModelAnnotationHolder.) | |
GetAnnotations<TType>() | Returns all attached model annotations that implement the given annotation type and have the specified model identifier. (Inherited from IModelAnnotationHolder.) | |
GetAnnotations<TType>(ModelIdentifier) | (Inherited from IModelAnnotationHolder.) | |
GetBodyDependenciesRelationship | Gets the IModelMultiRelationship between this IDatabaseProcedure and any IModelElement nodes that are referenced by the stored procedure body. | |
GetComposingChildren | Returns a list of composing children for this element. (Inherited from IModelElement.) | |
GetHierarchicalChildren | Returns a list of hierarchical children for this element. (Inherited from IModelElement.) | |
GetOwnerInfo | Returns information about the element owner. (Inherited from IModelElement.) | |
GetProperty<TProperty> | Gets the specified property. (Inherited from IModelPropertyContainer.) | |
GetReferencedDanglingRelationshipEntries | Returns a list of the relationship entries, where this element is on the left side and there is either no element on the right side of the relationship, or the element on the right does not exist in the model. (Inherited from IModelElement.) | |
GetReferencedElements | Returns a list of the elements that are in a relationship with this element, where this element is on the left side of the relationship. (Inherited from IModelElement.) | |
GetReferencedRelationshipEntries | Returns a list of the relationship entries, where this element is on the left side. (Inherited from IModelElement.) | |
GetReferencingElements | Returns a list of the elements that are in a relationship with this element, where this element is on the right side. (Inherited from IModelElement.) | |
GetReferencingRelationshipEntries | Returns a list of the relationship entries, where this element is on the right side. (Inherited from IModelElement.) | |
GetRelationship(ModelRelationshipClass) | Returns the requested relationship by using the provided metadata. (Inherited from IModelElement.) | |
GetRelationship<TFrom, TTo>(ModelRelationshipClass) | Returns a relationship where the two related elements are of the specified types. (Inherited from IModelElement.) | |
GetRelationships | Returns a list of the relationships in this element. (Inherited from IModelElement.) | |
IsDeleted | Specifies whether the object is deleted. (Inherited from IModelElement.) | |
IsExternal | Returns a value that indicates whether the object was loaded from an external source and is not a part of the schema model. (Inherited from IModelElement.) | |
RemoveAnnotation | Removes the specified annotation from this model element. (Inherited from IModelAnnotationHolder.) | |
SetProperty<TProperty> | Sets the specified property. (Inherited from IModelPropertyContainer.) |
Top