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 ServerAzure SQL DatabaseAzure SQL Managed Instance

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
Inherited Members
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

object_id NOT NULL int

The ID of the object to which this parameter belongs.
[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }

Property Value

int

ParameterID

parameter_id NOT NULL int

The ID of the parameter. Is unique within the object.
[Column("parameter_id")]
[NotNull]
public int ParameterID { get; set; }

Property Value

int

XmlCollectionID

xml_collection_id NOT NULL int

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