Table of Contents

Class FilestreamAndFileTableSchema.FileTable

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

sys.filetables (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row for each FileTable in SQL Server. For more information about FileTables, see FileTables (SQL Server).


See sys.filetables.

[Table(Schema = "sys", Name = "filetables", IsView = true)]
public class FilestreamAndFileTableSchema.FileTable
Inheritance
FilestreamAndFileTableSchema.FileTable
Extension Methods

Properties

DirectoryName

Name of the root directory for a FileTable.

[Column("directory_name")]
[NotNull]
public string DirectoryName { get; set; }

Property Value

string

FilenameCollationID

Is the collation identifier defined for the FileTable

[Column("filename_collation_id")]
[NotNull]
public object FilenameCollationID { get; set; }

Property Value

object

FilenameCollationName

Is the collation name defined for the FileTable.

[Column("filename_collation_name")]
[NotNull]
public object FilenameCollationName { get; set; }

Property Value

object

IsEnabled

1 = FileTable is in 'enabled' state.

[Column("is_enabled")]
[NotNull]
public bool IsEnabled { get; set; }

Property Value

bool

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. Is unique within a database.

For more information, sys.objects (Transact-SQL).

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

Property Value

object