I have a ASP.NET Web application, which serves as a backend web api for my Android application.
Now just for development purpose, I am using SmarterAsp.net's free trial hosting. And I have successfully published the web app to the server using Visual Studio 2015 (CE) built in publish tool.
However I now need to setup the MS SQL database on the server as well, which requires SQL files to run from.
How would I generate the SQL files that are needed for my project? I am using Entity Framework and used Code First Migration that automatically setup my local SQL Server.
It would be preferable if there is a way to do this in VS without having to open up SQL Server and export the sql files. Thanks!