I am trying to figure out how to run a specific migration from the package manager in nuget.
I have tried to run:
update-database -TargetMigration test3
The best answer given by Dmitry is a bit incorrect. There's no parameter -Target. The only parameter that can be applied is -Migration. Therefore, the right answer is:
-Target
-Migration
Update-Database -Migration test32