Table of Contents

Class XmlSchema.XmlSchemaNamespace

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.xml_schema_namespaces (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row per XSD-defined XML namespace. The following tuples are unique: collection_id, namespace_id, and collection_id, and name.


See sys.xml_schema_namespaces.

[Table(Schema = "sys", Name = "xml_schema_namespaces", IsView = true)]
public class XmlSchema.XmlSchemaNamespace
Inheritance
XmlSchema.XmlSchemaNamespace
Extension Methods

Properties

Name

Name of XML namespace. Blank name indicates no target namespace.

[Column("name")]
[Nullable]
public string? Name { get; set; }

Property Value

string

XmlCollectionID

ID of the XML schema collection that contains this namespace.

[Column("xml_collection_id")]
[NotNull]
public int XmlCollectionID { get; set; }

Property Value

int

XmlNamespaceID

1-based ordinal that uniquely identifies the XML namespace in the database.

[Column("xml_namespace_id")]
[NotNull]
public int XmlNamespaceID { get; set; }

Property Value

int