Error:
Getting the following error in NuGet Package Manager Console …
The EF Core tools version '3.1.3' is older than that of the runtime '3.1.5'. Update the tools for the latest features and bug fixes.
Fix:
Run the following in NuGet Package Manager Console …
Install-Package Microsoft.EntityFrameworkCore -Version 3.1.5
Install-Package Microsoft.EntityFrameworkCore.Tools -Version 3.1.5
Note: Make sure the version matches the one in the error message.
Sources:
https://stackoverflow.com/questions/52108659/need-to-update-ef-core-tools
Comments