I have Net Core 3.1.1000 installed. Now we are trying to run ef migrations with EF Core 2.2.6 database previous Solution,
when running the following, receive error below.
dotnet ef migrations add InitialCreate
The application to execute does not exist: .dotnet\tools.store\dotnet-ef\2.2.6-servicing-10079\dotnet-ef\2.2.6-servicing-10079\tools\netcoreapp2.2\any\dotnet-ef.dll'.
How can we resolve this?
How Can I point directly to the DLL target directory and execute? I heard renaming file directory is not good idea.
I see the real dll is located here:
....dotnet\tools.store\dotnet-ef\2.2.6\dotnet-ef\2.2.6\tools\netcoreapp2.2\any\dotnet-ef.dll
already ran this and installed this: dotnet tool install --global dotnet-ef
