Class FilestreamAndFileTableSchema.FileTable
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.filetables (Transact-SQL)
Applies to: √ SQL Server
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
- Inherited Members
- Extension Methods
Properties
DirectoryName
directory_name NOT NULL varchar(255)
Name of the root directory for a FileTable.[Column("directory_name")]
[NotNull]
public string DirectoryName { get; set; }
Property Value
FilenameCollationID
filename_collation_id NOT NULL
Is the collation identifier defined for the FileTable[Column("filename_collation_id")]
[NotNull]
public object FilenameCollationID { get; set; }
Property Value
FilenameCollationName
filename_collation_name NOT NULL
Is the collation name defined for the FileTable.[Column("filename_collation_name")]
[NotNull]
public object FilenameCollationName { get; set; }
Property Value
IsEnabled
is_enabled NOT NULL bit
1 = FileTable is in 'enabled' state.[Column("is_enabled")]
[NotNull]
public bool IsEnabled { get; set; }
Property Value
Object
objects (sys.objects)
[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }
Property Value
ObjectID
object_id NOT NULL
Object identification number. Is unique within a database.For more information, sys.objects (Transact-SQL).
[Column("object_id")]
[NotNull]
public object ObjectID { get; set; }