Table of Contents

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.


See sys.fulltext_stoplists.

[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

DateTime

ModifyDate

Date that stoplist was last modified using any ALTER statement.

[Column("modify_date")]
[NotNull]
public DateTime ModifyDate { get; set; }

Property Value

DateTime

Name

Name of the stoplist.

[Column("name")]
[NotNull]
public string Name { get; set; }

Property Value

string

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; }

Property Value

int