[BUG] Cannot use Add-Migrations
caiovitor opened this issue · 1 comments
caiovitor commented
Describe the bug
When I try to use Add-Migration DbInit -context OrdersContext in project DevStore.Orders.Infra I got this error bellow:
To Reproduce
Steps to reproduce the behavior:
- Go to 'Package Manage Console'
- Select the project 'DevStore.Orders.Infra'
- Run the command 'Add-Migration DbInit -context OrdersContext'
- See error
Expected behavior
Generate migrations files
Desktop (please complete the following information):
- OS: Windows 11
- Visual Studio Community 2022
Additional context
Add any other context about the problem here.
TiagoCastilhos commented
You need to specify your startup project, which would be the api project.
Try opening a CMD in "src/services" directory and exeute the following command:
dotnet ef migrations add "DbInit" -s .\DevStore.Orders.AP\DevStore.Orders.API.csproj -p .\DevStore.Orders.Infra\DevStore.Orders.Infra.csproj --context OrdersContext
NOTE: This command can run at any directory of your application, you just have to set the proper path