Share via


TSqlObject.GetReferencedRelationshipInstances Method (DacQueryScopes)

For each object referenced by this TSqlObject, returns the ModelRelationshipInstance defining the relationship data. This will include the referenced object if it exists, the ObjectIdentifier used to identify the referenced object, and any properties specific to this relationship. Only objects within the specified DacQueryScopes scope will be returned. To return non-composite or system references the GetReferencedRelationshipInstances(DacExternalQueryScopes) method should be called instead.

Namespace:  Microsoft.SqlServer.Dac.Model
Assembly:  Microsoft.SqlServer.Dac.Extensions (in Microsoft.SqlServer.Dac.Extensions.dll)

Syntax

'Declaration
Public Function GetReferencedRelationshipInstances ( _
    queryScopes As DacQueryScopes _
) As IEnumerable(Of ModelRelationshipInstance)
'Usage
Dim instance As TSqlObject 
Dim queryScopes As DacQueryScopes 
Dim returnValue As IEnumerable(Of ModelRelationshipInstance)

returnValue = instance.GetReferencedRelationshipInstances(queryScopes)
public IEnumerable<ModelRelationshipInstance> GetReferencedRelationshipInstances(
    DacQueryScopes queryScopes
)
public:
IEnumerable<ModelRelationshipInstance^>^ GetReferencedRelationshipInstances(
    DacQueryScopes queryScopes
)
member GetReferencedRelationshipInstances : 
        queryScopes:DacQueryScopes -> IEnumerable<ModelRelationshipInstance> 
public function GetReferencedRelationshipInstances(
    queryScopes : DacQueryScopes
) : IEnumerable<ModelRelationshipInstance>

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<ModelRelationshipInstance>
ModelRelationshipInstance defining the relationships between this TSqlObject and the objects referenced by it.

Remarks

The Object field may be null if the element is not in the TSqlModel. In these cases the ObjectName field can be used to query information about the referenced object.

See Also

Reference

TSqlObject Class

GetReferencedRelationshipInstances Overload

Microsoft.SqlServer.Dac.Model Namespace