Use case – implementing a simple application in Blazor WebAssembly
In this section, we will implement a package search application for the WWTravelClub book use case. The first subsection explains how to set up the solution exploiting the domain layer and data layer we already implemented in Chapter 15, Presenting ASP.NET Core MVC.
Preparing the solution
First of all, create a copy of the PackagesManagement solution folder we created in Chapter 15, Presenting ASP.NET Core MVC, and rename it PackagesManagementBlazor.
Open the solution, right-click on the Web project (the one named PackagesManagement) and remove it. Then, go to the solution folder and delete the whole Web project folder (the one named PackagesManagement).
Now right-click on the solution and select Add New project. Add a new Blazor WebAssembly project called PackagesManagementBlazor. Select no authentication and ASP.NET Core hosted. We don't need authentication since the search-by-location...