I'm curious if there is a best practice to regenerate a new MVC 4 controller?
What I've done:
- Generated the controller
BookingController
- Realized I need to run a migration to drop an attribute in the
Booking
model - Wish to update the auto generated
BookingController
with these changes automatically
Is it just a case of deleting the views and controller and starting again? I'm scared this might, for some reason, not let me generate a new one?