Method Migrate
Migrate(TTarget)
Execute the migration on the provided instance.
All steps with a version greater than the instance version will be executed in ascending order. Eg: for instance with version 2 and step version 1, 3, 5, and 6. It will execute steps 3 then 5 then 6.
Declaration
public bool Migrate(TTarget target)
Parameters
Type | Name | Description |
---|---|---|
TTarget | target | The instance to migrate. |
Returns
Type | Description |
---|---|
bool | True if it has executed migration steps, false otherwise. |