Table of Contents

Class ObjectSchema.ModuleAssemblyUsage

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

sys.module_assembly_usages (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row for each module-to-assembly reference.


See sys.module_assembly_usages.

[Table(Schema = "sys", Name = "module_assembly_usages", IsView = true)]
public class ObjectSchema.ModuleAssemblyUsage
Inheritance
ObjectSchema.ModuleAssemblyUsage
Extension Methods

Properties

AssemblyID

ID of the assembly from which this module was created.

[Column("assembly_id")]
[NotNull]
public int AssemblyID { 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

Object identification number of the SQL object. Is unique within a database.

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

Property Value

int