A simple web application. Realization of technical assignment for Shop-Express company.
- Using the MVC pattern to organize code.
- Using the Entity Framework to work with the database (Code-First).
- Contains client side validation
- Implementation of AJAX requests to improve the reactivity of the interface.
- Displays a list of tasks.
- Ability to add a new task.
- Mark a task as completed.
- Ability to edit the task name.
- The ability to delete a task.
- Implementation of the task sorting function.
In appsettings.json, paste the name of your server in the connection string
"ConnectionStrings": {
"DefaultConnection": "Server=your_name;Database=ToDo;Trusted_Connection=True; trustServerCertificate=true;"
},