Class FullTextSearchSchema.StopWord
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.fulltext_stopwords (Transact-SQL)
Applies to: √ SQL Server (all supported versions) √ Azure SQL Database
Contains a row per stopword for all stoplists in the database.
[Table(Schema = "sys", Name = "fulltext_stopwords", IsView = true)]
public class FullTextSearchSchema.StopWord
- Inheritance
-
FullTextSearchSchema.StopWord
- Extension Methods
Properties
Language
Is either the value of the alias in sys.fulltext_languagescorresponding to the value of the locale identifier (LCID), or is the string representation of the numeric LCID.
[Column("language")]
[NotNull]
public string Language { get; set; }
Property Value
LanguageID
LCID used for word breaking.
[Column("language_id")]
[NotNull]
public int LanguageID { get; set; }
Property Value
StopWordColumn
The term to be considered for a stop-word match.
[Column("stopword")]
[NotNull]
public string StopWordColumn { get; set; }
Property Value
StoplistID
ID of the stoplist to which stopword belongs. This ID is unique within the database.
[Column("stoplist_id")]
[NotNull]
public int StoplistID { get; set; }