Next I'm trying to use the new EFCore, and with MySQL, I've installed the following packages nuget
:
Install-Package MySql.Data.EntityFrameworkCore-Pre Install-Package Microsoft.EntityFrameworkCore.Tools -Pre
using the following tutorial: link
However when I execute the command to add migration
the following error occurs:
Could not load file or assembly 'MySql.Data.EntityFrameworkCore, Version=7.0.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)
I already did this same tutorial with SQLServer
and it worked perfectly.