I am studying how ADO.NET models work in the Entity Framework with MySQL. I create a new test model, and then select "Create a database from the model"
It creates for me a new file "model_name.edms.sql" - the actual MySQL script to create the database.
However, to execute it, I have to "Connect to the server", which is used by default as SQL Server 2012. But in my case, I use MySQL, and not MS SQL Server. I have no instance of SQL12, im working with MySQL
How do I change it to connect to MySQL?
PS I know that I can use the "New Request" directly in the database and copy / paste the contents of the file and execute. I can also use MySQL Workbench and many other applications, however, I work in VS2013, where most of the already integrated tools, I can not assume that the SQL files in VS13 can be executed only through MS SQL12
source
share