This demo will be created using .NET Core Framework 2.0 and Visual Studio 2017. Begin by opening up Visual Studio 2017:
- Click on File | New | Project and, in the new Project window, select ASP.NET Core Web Application. Name the project and click on OK:
- A pop-up window opens up where you can select the Web API template, select ASP.NET Core 2.0, and click on OK:
- Add a Models folder in the Solution Explorer. Right-click your project name and select Add | New Folder. Add a TodoItem class by right-clicking the Models folder and click Add | Class.
- Update the TodoItem class ...