When having c# .net4 mvc3 and entity-framework 4.1 and MySql 5.0.67 using Connector/NET 6.4.3 as the stack. What do I need to configure in order to have the app update the tables in MySql when there is a change in a domain class?
Additionally, is there a way to generate sql/DDL from the domain classes?
I want to use the "code first" method but I can't seem to get it to update/create tables when the database already exist.
When changing the connection provider and string to be a SQLServer CE it creates both the database and the tables.