Field.IsSearchable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the field is full-text searchable. This means it will undergo analysis such as word-breaking during indexing. If you set a searchable field to a value like "sunny day", internally it will be split into the individual tokens "sunny" and "day". This enables full-text searches for these terms. This property may be set to true only for fields of type Edm.String or Collection(Edm.String), and it must be null for complex fields. Default is false for simple fields and null for complex fields. Note: searchable fields consume extra space in your index since Azure Cognitive Search will store an additional tokenized version of the field value for full-text searches. If you want to save space in your index and you don't need a field to be included in searches, set searchable to false.
[Newtonsoft.Json.JsonIgnore]
public bool? IsSearchable { get; set; }
[<Newtonsoft.Json.JsonIgnore>]
member this.IsSearchable : Nullable<bool> with get, set
Public Property IsSearchable As Nullable(Of Boolean)
Property Value
- Attributes
-
Newtonsoft.Json.JsonIgnoreAttribute
Applies to
Azure SDK for .NET