Table of Contents

Class XmlSchema.ParameterXmlSchemaCollectionUsage

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

sys.parameter_xml_schema_collection_usages (Transact-SQL)

Applies to: √ SQL Server (all supported versions) √ Azure SQL Database

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


See sys.parameter_xml_schema_collection_usages.

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

Properties

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 parameter belongs.

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

Property Value

int

ParameterID

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

[Column("parameter_id")]
[NotNull]
public int ParameterID { get; set; }

Property Value

int

XmlCollectionID

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

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

Property Value

int