I just installed Visual Studio 2019 and I´m trying to add a database with an ADO.NET entity model, but the wizard crashes in this step...
Select Entity Framework Version
I have Visual Studio Community 2019 v16.4.5
Installed MySQL for Visual Studio 1.2.9
Installed MySQL connector net 8.0.19
I added the references to my project
MySQL.data
MySQL.data.EntityFramework for EF6
MySQL.web
all version 8.0.19, same as the connector
I also tried adding from nuget packages
EntityFramework
MySqlData
MySql.Data.Entity
MySql.Web
and added this to web.config
<entityFramework>
<providers>
<provider invariantName="MySql.Data.MySqlClient"
type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" />
</providers>
</entityFramework>
and tried everything I've read but it still doesnt work, it just crashes after that or it gives me this error
Your Project references the latest version of Entity Framework
Can someone please help? Am I adding worng versions?