.NET MVC Todo App Tutorial.

Create your own Todo app using .NET Model-View-Controller method

This tutorial takes you through how to get started using .NET Model-View-Controller method. We are going to create it from scratch, add Views, ViewModels, use Dependency Injection to separate Business Logic and in the end add some tests to it. Final version of this project is found in This Github Repository

Prerequistics

We will be using Visual Studio as our IDE (Integrated Environment Development) and Postgres for our database:

*Visual Studio. You can download latest version here
*Postgres db. You can download latest version here

After project is ready it should look like this:

You can create, read, edit and delete all your todos. Also, search functionality! So lets get started, click here to get started ->