I try to create a crud controller with asp.net mvc using Mysql database, the database is secure (I can only display tables).
When I try to generate the controller this error appears:
I try to create a crud controller with asp.net mvc using Mysql database, the database is secure (I can only display tables).
When I try to generate the controller this error appears:
I would suggest you to try the following:
Alternatively, you can also give the below commands a try in the Package Manager Console.
Uninstall-Package EntityFramework -Force
Install-Package EntityFramework
Uninstall-Package MvcScaffolding
Install-Package MvcScaffolding
Follow this link for more suggestions.