XmlSchemaCollections 属性
表示 XmlSchemaCollection 对象的集合。每个 XmlSchemaCollection 对象都表示对数据库定义的一个 XML 架构。
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(XmlSchemaCollection))> _
Public ReadOnly Property XmlSchemaCollections As XmlSchemaCollectionCollection
Get
用法
Dim instance As Database
Dim value As XmlSchemaCollectionCollection
value = instance.XmlSchemaCollections
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(XmlSchemaCollection))]
public XmlSchemaCollectionCollection XmlSchemaCollections { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(XmlSchemaCollection))]
public:
property XmlSchemaCollectionCollection^ XmlSchemaCollections {
XmlSchemaCollectionCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(XmlSchemaCollection))>]
member XmlSchemaCollections : XmlSchemaCollectionCollection
function get XmlSchemaCollections () : XmlSchemaCollectionCollection
属性值
类型:Microsoft.SqlServer.Management.Smo. . :: . .XmlSchemaCollectionCollection
一个 XmlSchemaCollectionCollection 对象,该对象表示对数据库定义的所有 XML 架构。
注释
Specific XML schema collections can be referenced by using this collection by specifying the name of the XML schema collection. To add a new XML schema collection to the collection, call the XML schema collection constructor XmlSchemaCollection.
示例
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")
'Display all the XML schema collections in the database.
Dim xsc As XmlSchemaCollection
For Each xsc In db.XmlSchemaCollections
Console.WriteLine(xsc.Name)
Next
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
Foreach ($xsc in $db.XmlSchemaCollections)
{
Write-Host $xsc.Name
}