Home > other >  Entity Framework Core migrations compatibility
Entity Framework Core migrations compatibility

Time:01-12

I know that Entity Framework migrations aren't compatible with Entity Framework Core, but I could not find a statement clarifying whether Entity Framework Core migrations are guaranteed to be compatible with all future versions of Entity Framework Core. Is there any such statement?

CodePudding user response:

No. But EF -> EF Core was a rewrite, with lots of breaking changes. There is nothing like that planned for the future.

But worst-case scenario you would need to Reset All Migrations.

  •  Tags:  
  • Related