Class FullTextIndexConfiguration
A class for an index based on full text searching
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 SourceFullTextIndexConfiguration(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 SourceIgnoreAccents
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 |
Language
Gets the locale to use when performing full text searching
Declaration
public string Language { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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>