I have been trying to follow the few tutorials on how to create a DB using the model first approach in MVC. I have gone as far as creating Entities in the designer and trying to generate a DB from the model. It creates SQL file fine but I cant seem to execute it? I have no option to do so? When I right click the file the execute option is not available and when I open the file and right click in the context the option is not available. I have tried connecting to a blank DB and then creating the Entity Model on this DB with model entities and then trying to generate a DB from the model but still no option to execute the sql from within VS2010 express. Is there a reason why its not there ?
Question 2 I like using the model first approach as I find the graphical representation of all the entities and their relationships easy to understand and I like the fact all the C# Db access classes get created at a click of a button. However most examples for MVC 3 seem to use the code first approach. are there big benefits in using code first over model first? which approach is easier to grasp ? I come from DB background and when i did do some asp coding way back, DBs were always in place first :)
Thanks dave