I was reading a article > which demonstrates the method of using the Entity Framework to connect to MySQL database, however, the article demonstrates techniques very different from the ones I use. (MVC).
Currently my applications are based on MS SQL databases, using Code First method.
I use the following ConnectionString structure:
<connectionStrings>
<add name="BancoDados" connectionString="Data Source=sqlserver.hospedagemdesites.ws;Initial Catalog=database;Persist Security Info=True;User ID=login;Password=senha" providerName="System.Data.SqlClient" />
</connectionStrings>
As the larger MySQL license allows us to make the cost of the application a bit cheaper, I'd like to know if I can migrate my applications and still use Entity Framework features such as Code First.