Table of Contents

Class FullTextSearchSchema.Language

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.fulltext_languages (Transact-SQL)

Applies to: √ SQL Server (all supported versions) √ Azure SQL Database

This catalog view contains one row per language whose word breakers are registered with SQL Server. Each row displays the LCID and name of the language. When word breakers are registered for a language, its other linguistic resources-stemmers, noise words (stopwords), and thesaurus files-become available to full-text indexing/querying operations. The value of name or lcid can be specified in the full-text queries and full-text index Transact\-SQL statements.


See sys.fulltext_languages.

[Table(Schema = "sys", Name = "fulltext_languages", IsView = true)]
public class FullTextSearchSchema.Language
Inheritance
FullTextSearchSchema.Language
Extension Methods

Properties

Lcid

Microsoft Windows locale identifier (LCID) for the language.

[Column("lcid")]
[NotNull]
public int Lcid { get; set; }

Property Value

int

Name

Is either the value of the alias in sys.syslanguages corresponding to the value of lcid or the string representation of the numeric LCID.

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

Property Value

string