Just wondering if it is possible to update views connected to a model in ASP.NET MVC.
I am using Entity Framework database first which creates a .edmx object model for the solution.
I have created a new scaffolding model based on the model, which created:
- Create.cshtml
- Delete.cshtml
- Details.cshtml
- Edit.cshtml
- Index.cshtml
If I add a property in the model, how can I update those views automatically with the new property to represent the updated model in the UI?