Class FullTextSearchSchema.IndexCatalogUsage
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.fulltext_index_catalog_usages (Transact-SQL)
Applies to: √ SQL Server (all supported versions) √ Azure SQL Database
Returns a row for each full-text catalog to full-text index reference.
[Table(Schema = "sys", Name = "fulltext_index_catalog_usages", IsView = true)]
public class FullTextSearchSchema.IndexCatalogUsage
- Inheritance
-
FullTextSearchSchema.IndexCatalogUsage
- Extension Methods
Properties
FulltextCatalogID
ID of full-text catalog.
[Column("fulltext_catalog_id")]
[NotNull]
public int FulltextCatalogID { get; set; }
Property Value
IndexID
ID of full-text index.
[Column("index_id")]
[Nullable]
public int? IndexID { get; set; }
Property Value
- int?
Object
objects (sys.objects)
[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }
Property Value
ObjectID
ID of the full-text indexed table. Is unique within the database.
[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }