Hy Guys,
How can I configure the webconfig to access a mysql db using MVC 3?
To use SQLExpress I included this code to configure in an example...
<add name="MovieDBContext"
connectionString="Server=.\SQLEXPRESS;
Database=Movies;Trusted_Connection=true"
providerName="System.Data.SqlClient" />
I'm using Entity Framework.
PS.: I don't want to automatically create tables with the MVC. I want to create them manually.
Thks!