Class FullTextSearchSchema.SystemStopWord
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.fulltext_system_stopwords (Transact-SQL)
Applies to: √ SQL Server (all supported versions) √ Azure SQL Database
Provides access to the system stoplist.
[Table(Schema = "sys", Name = "fulltext_system_stopwords", IsView = true)]
public class FullTextSearchSchema.SystemStopWord
- Inheritance
-
FullTextSearchSchema.SystemStopWord
- Extension Methods
Properties
LanguageID
Locale identifier (LCID) of the language. This LCID is used for word breaking.
[Column("language_id")]
[NotNull]
public int LanguageID { get; set; }
Property Value
StopWord
The term that is considered for a stop-word match.
[Column("stopword")]
[Nullable]
public string? StopWord { get; set; }