Class FullTextSearchSchema.Stoplist
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.fulltext_stoplists (Transact-SQL)
Applies to: √ SQL Server (all supported versions) √ Azure SQL Database
Contains a row per full-text stoplist in the database.
[Table(Schema = "sys", Name = "fulltext_stoplists", IsView = true)]
public class FullTextSearchSchema.Stoplist
- Inheritance
-
FullTextSearchSchema.Stoplist
- Extension Methods
Properties
CreateDate
Date that stoplist was created.
[Column("create_date")]
[NotNull]
public DateTime CreateDate { get; set; }
Property Value
ModifyDate
Date that stoplist was last modified using any ALTER statement.
[Column("modify_date")]
[NotNull]
public DateTime ModifyDate { get; set; }
Property Value
Name
Name of the stoplist.
[Column("name")]
[NotNull]
public string Name { get; set; }
Property Value
PrincipalID
ID of the database principal that owns the stoplist.
[Column("principal_id")]
[Nullable]
public int? PrincipalID { get; set; }
Property Value
- int?
StoplistID
ID of the stoplist, unique within the database.
[Column("stoplist_id")]
[NotNull]
public int StoplistID { get; set; }