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 implemented in Chapter 16, Implementing Frontend Microservices with ASP.NET Core.
Preparing the solution
First of all, create a copy of the PackagesManagement
solution folder we created in Chapter 16, Implementing Frontend Microservices with ASP.NET Core, 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 none and ASP.NET Core hosted. We don’t need authentication...