In the first part of our Serie of “Migrate and modernize your applications on Azure” we are going to build a simple .Net application .
So , basically we are going to start fresh and create a solution that contain two project , a client project and API project as you will see in the video .
We are not going through creating an advanced sample were we are going to work with repository pattern or something , we are just going to create a simple application base on the below model :
public class ToDo { [Key] public int TaskId{ get; set; } public string Name{ get; set; } public string URD { get; set; } public Level Priority { get; set; } } public enum Level { Low, Medium, High }
Based on this Model (when I was thinking about creating the demo I had a lot of ideas and in the end Is said why complicate things for just a demo , let me go with the basic todo ) we are going to create new tasks , give it a name and a time when that task have been created and it’s level .
In other step we are going to add the dbcontext so we can connect to sql server .
And like that we are going to have a basic application that will work on IIS Express .