8
I was reading a article that demonstrates the method of using the Entity Framework for connection to Mysql database, however, the article demonstrates techniques quite 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 broader license of Mysql allows us to cheapen the cost of the application a little, I wonder if I can migrate my applications and still use the resources of the Entity Framework, such as the aforementioned Code First.
Maybe this link will help you: http://stackoverflow.com/questions/20277677/dynamic-mysql-database-connection-for-entity-framework-6
– Diego Zanardo