-
Book Overview & Buying
-
Table Of Contents
Blazor WebAssembly by Example - Third Edition
By :
In this chapter, you will build a task manager project to manage tasks. You will be able to view, add, edit, and delete tasks. The tasks will be stored in an SQL Server database.
This is a screenshot of the completed application:

Figure 12.4 – Task Manager
The build time for this project is approximately 60 minutes.
The task manager project will be built by using three different project templates: Blazor WebAssembly Standalone App, ASP.NET Core Web API, and Class Library. First, you will create the three projects. Next, you will add both a TaskItem class and a TaskItemsController class. You will use Entity Framework migrations to create a database in SQL Server and the Endpoint Explorer and .http files to test your API. You will use CORS to enable communication between the Blazor client and API, and finally, you'll implement the Blazor UI to display, add, complete, and delete tasks.
You need...