Enum MigrationPhase
A migration phase represents the time in an object's validation or loading process at which a Migration should be applied.
public enum MigrationPhase
- Extension Methods
Fields
Single = 0Signifies that the object only has a single migration phase, which is the case for Options.
Early = 1Signifies that the migration should be applied at the start of the object's validation process, before any validation is performed.
Late = 2Signifies that the migration should be applied at the end of the object's validation process, after all default validations are performed.