Table of Contents

Class CLRAssemblySchema.AssemblyReference

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

sys.assembly_references (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Contains a row for each pair of assemblies where one is directly referencing another.


See sys.assembly_references.

[Table(Schema = "sys", Name = "assembly_references", IsView = true)]
public class CLRAssemblySchema.AssemblyReference
Inheritance
CLRAssemblySchema.AssemblyReference
Extension Methods

Properties

AssemblyID

ID of the assembly to which this reference belongs.

[Column("assembly_id")]
[NotNull]
public int AssemblyID { get; set; }

Property Value

int

ReferencedAssemblyID

ID of the assembly being referenced.

[Column("referenced_assembly_id")]
[NotNull]
public int ReferencedAssemblyID { get; set; }

Property Value

int