Enum CompatibilityLevel
Severity of a schema change, ordered from harmless to Breaking.
public enum CompatibilityLevel
Fields
Breaking = 4Change requires an explicit migration; persisted data cannot be read safely otherwise.
Compatible = 2Change can be applied automatically without a data migration.
CompatibleWidening = 3Compatible widening conversion applied automatically.
Identical = 0No difference.
InformationOnly = 1Recorded for information only; no effect on data compatibility.