Table of Contents

Class FullTextSearchSchema.SemanticLanguage

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

sys.fulltext_semantic_languages (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row for each language whose statistics model is registered with the instance of SQL Server. When a language model is registered, that language is enabled for semantic indexing.
This catalog view is similar to sys.fulltext_languages (Transact-SQL).


See sys.fulltext_semantic_languages.

[Table(Schema = "sys", Name = "fulltext_semantic_languages", IsView = true)]
public class FullTextSearchSchema.SemanticLanguage
Inheritance
FullTextSearchSchema.SemanticLanguage
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 (Transact-SQL) 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