Table of Contents

Class CLRAssemblySchema.AssemblyFile

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

sys.assembly_files (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Contains a row for each file that makes up an assembly.


See sys.assembly_files.

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

Properties

AssemblyID

ID of the assembly to which this file belongs.

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

Property Value

int

Content

Content of file.

[Column("content")]
[Nullable]
public byte[]? Content { get; set; }

Property Value

byte[]

FileID

ID of the file. Is unique within an assembly. The file ID numbered 1 represents the assembly DLL.

[Column("file_id")]
[NotNull]
public int FileID { get; set; }

Property Value

int

Name

Name of the assembly file.

[Column("name")]
[Nullable]
public string? Name { get; set; }

Property Value

string