Show / Hide Table of Contents

Class FullTextIndexConfiguration

A class for an index based on full text searching

Inheritance
System.Object
IndexConfiguration
FullTextIndexConfiguration
Implements
System.IEquatable<IndexConfiguration>
System.IEquatable<FullTextIndexConfiguration>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Couchbase.Lite.Query
Assembly: Couchbase.Lite.dll
Syntax
public sealed class FullTextIndexConfiguration : IndexConfiguration, IEquatable<IndexConfiguration>, IEquatable<FullTextIndexConfiguration>

Constructors

| Improve this Doc View Source

FullTextIndexConfiguration(String[])

Starts the creation of an index based on a full text search

Declaration
public FullTextIndexConfiguration(params string[] expressions)
Parameters
Type Name Description
System.String[] expressions

The expressions to use to create the index

Properties

| Improve this Doc View Source

IgnoreAccents

Gets whether to ignore accents when performing the full text search Default value is DefaultFullTextIndexIgnoreAccents

Declaration
public bool IgnoreAccents { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Language

Gets the locale to use when performing full text searching

Declaration
public string Language { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Where

A predicate expression defining conditions for indexing documents. Only documents satisfying the predicate are included, enabling partial indexes.

Declaration
public string Where { get; set; }
Property Value
Type Description
System.String

Implements

System.IEquatable<T>
System.IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX