I want to develop on sql server database and use MySql for production.
I've created my database using SSMS Diagram and generated ADO.NET Enity Model in my ASP.NET MVC project. Then I modified connection string from Sql Server to point to MySql Server and specifically passed MySqlConnection object to DbContext. Now I'm trying to execute this below code but it complains that provided underlying connection is not of .NET Sql Server Connection type.
dbContext.CreateDatabase();