Table of Contents

Class ObjectSchema.ExternalLibraryFile

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

sys.external_library_files (Transact-SQL)

Applies to: √ SQL Server 2017 (14.x) and later √ Azure SQL Managed Instance

Lists a row for each file that makes up an external library.


See sys.external_library_files.

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

Properties

Content

Content of the external library file artifact.

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

Property Value

byte[]

ExternalLibraryID

ID of the external library object.

[Column("external_library_id")]
[NotNull]
public object ExternalLibraryID { get; set; }

Property Value

object

Platform

ID of the host platform on which SQL Server is installed.

[Column("platform")]
[Nullable]
public object? Platform { get; set; }

Property Value

object

PlatformDesc

Name of the host platform. Valid values are WINDOWS, LINUX.

[Column("platform_desc")]
[Nullable]
public string? PlatformDesc { get; set; }

Property Value

string