Class IndexChange
A single index-level difference between the persisted schema and the current one.
public class IndexChange
- Inheritance
-
IndexChange
- Inherited Members
Constructors
IndexChange(FieldChangeKind, string, int)
Creates an index change record.
public IndexChange(FieldChangeKind kind, string fieldName, int fieldId)
Parameters
kindFieldChangeKindKind of change.
fieldNamestringName of the affected field.
fieldIdintUnique field identifier.
Properties
FieldId
Unique field identifier of the affected field.
public int FieldId { get; }
Property Value
FieldName
Name of the field whose index changed.
public string FieldName { get; }
Property Value
Kind
Kind of change (one of the index-related FieldChangeKind values).
public FieldChangeKind Kind { get; }