How can I run the sql code generated by EF Code First in VB.Net, without having to execute the enable-migrations, ADD-MIGRATION INITIAL and UPDATE-DATABASE commands
Well, the generated code will include it in the main menu of the application so that I can create the database or update it if it exists.
Taking as reference the article of the following link:
https://stackoverflow.com/questions/13593845/how-to-create-a-view-using-ef-code-first-poco
Any ideas?