Coupling EF Core migrations with product release versions

99 Views Asked by At

I'm new to EF Core migration tool. I'm looking for similar functionality that Liquibase has where we can define set of migrations to a single file so that they can be grouped and migrated one by one as a set. This would give us the chance from rollbacking or upgrading from one product version to another (101.1.03 to 101.1.14). So all the changes are applied from 101.1.03 to 101.1.14. I also do not no how to do this programmatically. This should be a lot common scenario but could not find how to do this.

1

There are 1 best solutions below

1
freifede On

I don't think this functionality exists out of the box.

I think it's for another discussion, but I would suggest handling it with code versioning.