Synonyms 属性

Represents a collection of Synonym objects. Each Synonym object represents a synonym defined on the database.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(Synonym))> _
Public ReadOnly Property Synonyms As SynonymCollection
    Get
用法
Dim instance As Database
Dim value As SynonymCollection

value = instance.Synonyms
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Synonym))]
public SynonymCollection Synonyms { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(Synonym))]
public:
property SynonymCollection^ Synonyms {
    SynonymCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Synonym))>]
member Synonyms : SynonymCollection
function get Synonyms () : SynonymCollection

属性值

类型:Microsoft.SqlServer.Management.Smo. . :: . .SynonymCollection
A SynonymCollection object that represents all the synonyms defined on the database.

注释

Specific synonyms can be referenced by using this collection by specifying the name of the synonym. To add a new synonym to the collection, call the synonym constructor Synonym.

示例

Dim srv As Server
        srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Display all the synonyms in the database.
Dim sy As Synonym
For Each sy In db.Synonyms
   Console.WriteLine(sy.Name)
Next