TSqlObject.GetReferenced メソッド

定義

オーバーロード

名前 説明
GetReferenced()

Default スコープ内のすべての参照先オブジェクトを取得します。

GetReferenced(DacQueryScopes)

指定した DacQueryScopes スコープ内で参照されているすべてのオブジェクトを取得します。

GetReferenced(ModelRelationshipClass)

オブジェクトがDefaultスコープ内にある、特定のModelRelationshipClassの参照先オブジェクトを取得します。

GetReferenced(ModelRelationshipClass, DacQueryScopes)

オブジェクトが特定のDacQueryScopesスコープ内にある、特定のModelRelationshipClassの参照先オブジェクトを取得します。

GetReferenced()

Default スコープ内のすべての参照先オブジェクトを取得します。

public System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Dac.Model.TSqlObject> GetReferenced();
member this.GetReferenced : unit -> seq<Microsoft.SqlServer.Dac.Model.TSqlObject>
Public Function GetReferenced () As IEnumerable(Of TSqlObject)

返品

TSqlObjectこのオブジェクトによって参照される s

注釈

TSqlModelに含まれていない要素への参照は返されません。 参照可能なすべての要素の一覧には、 GetReferencedRelationshipInstances() を使用します。

適用対象

GetReferenced(DacQueryScopes)

指定した DacQueryScopes スコープ内で参照されているすべてのオブジェクトを取得します。

public System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Dac.Model.TSqlObject> GetReferenced(Microsoft.SqlServer.Dac.Model.DacQueryScopes queryScopes);
member this.GetReferenced : Microsoft.SqlServer.Dac.Model.DacQueryScopes -> seq<Microsoft.SqlServer.Dac.Model.TSqlObject>
Public Function GetReferenced (queryScopes As DacQueryScopes) As IEnumerable(Of TSqlObject)

パラメーター

queryScopes
DacQueryScopes

DacQueryScopes スコープ オブジェクトを定義する必要があります。

返品

TSqlObjectこのオブジェクトによって参照される s

注釈

TSqlModelに含まれていない要素への参照は返されません。 参照可能なすべての要素の一覧には、 GetReferencedRelationshipInstances() を使用します。

適用対象

GetReferenced(ModelRelationshipClass)

オブジェクトがDefaultスコープ内にある、特定のModelRelationshipClassの参照先オブジェクトを取得します。

public System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Dac.Model.TSqlObject> GetReferenced(Microsoft.SqlServer.Dac.Model.ModelRelationshipClass relationshipType);
member this.GetReferenced : Microsoft.SqlServer.Dac.Model.ModelRelationshipClass -> seq<Microsoft.SqlServer.Dac.Model.TSqlObject>
Public Function GetReferenced (relationshipType As ModelRelationshipClass) As IEnumerable(Of TSqlObject)

パラメーター

relationshipType
ModelRelationshipClass

ModelRelationshipClass クエリを実行するリレーションシップ クラスの定義

返品

TSqlObject特定のオブジェクトに対してこのオブジェクトによって参照される ModelRelationshipClass

注釈

TSqlModelに含まれていない要素への参照は返されません。 参照可能なすべての要素の一覧には、 GetReferencedRelationshipInstances() を使用します。

適用対象

GetReferenced(ModelRelationshipClass, DacQueryScopes)

オブジェクトが特定のDacQueryScopesスコープ内にある、特定のModelRelationshipClassの参照先オブジェクトを取得します。

public System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Dac.Model.TSqlObject> GetReferenced(Microsoft.SqlServer.Dac.Model.ModelRelationshipClass relationshipType, Microsoft.SqlServer.Dac.Model.DacQueryScopes queryScopes);
member this.GetReferenced : Microsoft.SqlServer.Dac.Model.ModelRelationshipClass * Microsoft.SqlServer.Dac.Model.DacQueryScopes -> seq<Microsoft.SqlServer.Dac.Model.TSqlObject>
Public Function GetReferenced (relationshipType As ModelRelationshipClass, queryScopes As DacQueryScopes) As IEnumerable(Of TSqlObject)

パラメーター

relationshipType
ModelRelationshipClass

ModelRelationshipClass クエリを実行するリレーションシップを定義する

queryScopes
DacQueryScopes

DacQueryScopes スコープ オブジェクトを定義する必要があります。

返品

TSqlObject特定のオブジェクトに対してこのオブジェクトによって参照される ModelRelationshipClass

注釈

TSqlModelに含まれていない要素への参照は返されません。 参照可能なすべての要素の一覧には、 GetReferencedRelationshipInstances() を使用します。

適用対象