I have been trying to migrate a context that is called IntegrationEventLogContext and is located in a different layer, but it is getting an error which says;
"dotnet : Could not execute because the specified command or file was not found"
I am using this command to migrate the context.
dotnet ef migrations add Initial -c IntegrationEventLogContext -p IntegrationEventLogEF -o Ordering.API/Infrastructure/IntegrationEventMigrations
In addition, I would like the migration files to be created in the location that I specified.
How can I migrate the context?