Class TableIndexOptions
Options for creating an index on a table column
public class TableIndexOptions
- Inheritance
-
TableIndexOptions
- Inherited Members
Properties
Ascii
Should the index use ASCII conversion?
[JsonPropertyName("ascii")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public bool? Ascii { get; set; }
Property Value
- bool?
CaseSensitive
Should the index be case sensitive?
[JsonPropertyName("caseSensitive")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public bool? CaseSensitive { get; set; }
Property Value
- bool?
Normalize
Should the index normalize the text?
[JsonPropertyName("normalize")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public bool? Normalize { get; set; }
Property Value
- bool?