Prerequisites: creating the Entity Framework context from Lab 6
- Create action methods to edit the entity from previous labs for GET and POST requests
- Create a view using HTML Helpers to display a form to enter required input data for the entity
- With a POST request, write the model data to the database - using a repository
- After the data was sucessfully written, show a result message
- Create a custom HTML helper to change a string
- Use the custom HTML helper
- Create an alternative view to edit the model data using Tag Helpers instead of HTML Helpers
- Use the environment tag to differ between develop and production environments
- Create and use a custom tag helper