In EF.Net, migration can be restored as follows:
Add-Migration <migration_name> -force
Can I force rescaffold to do the same migration in the Entity Framework core?
There is no such option .
But you can delete it and create it again:
Remove-Migration Add-Migration <migration_name>
Source: https://habr.com/ru/post/1262579/More articles:Failed to install Sonar Runner on Mac (Sierra) - sonar-runnerJMS serializer date and time format yml - serializationHow is state passed to selectors in a response-redux application? - javascriptHow to check a function that is randomly output using Jest? - javascriptA string is treated as a sequence - scalaHow to make Swift submodule really private? - moduleDifference between okhttp and httpurlconnection? - androidC Objective Classes in iOS Swift Dynamic Framework - moduleCombining Java 8 lambda predicates with logical operators - javaSharing attributes on arbitrary objects at runtime - pythonAll Articles