Table of Contents

Class XmlSchema.ColumnXmlSchemaCollectionUsage

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

sys.column_xml_schema_collection_usages (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row for each column that is validated by an XML schema.


See sys.column_xml_schema_collection_usages.

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

Properties

ColumnID

The ID of the column. Is unique within the object.

[Column("column_id")]
[NotNull]
public int ColumnID { get; set; }

Property Value

int

Object

objects (sys.objects)

[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }

Property Value

ObjectSchema.Object

ObjectID

The ID of the object to which this column belongs.

[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }

Property Value

int

XmlCollectionID

The ID of the collection that contains the validating XML schema namespace of the column.

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

Property Value

int