Creating the ExpenseTracker Project
Explore the process of creating an ExpenseTracker project using Blazor WebAssembly. This lesson guides you through setting up a hosted Blazor app, adding necessary classes and API controllers, and implementing an interactive expense list with the EditForm component and built-in input controls.
We'll cover the following...
The ExpenseTracker project will be created by using Microsoft's Blazor WebAssembly App project template to create a hosted Blazor WebAssembly app. First, we will remove the demo project. Then, we will add the classes and API controllers needed for our project. We will add a table to the “Home” page to display the current list of expenses. Finally, we will use the EditForm component in conjunction with many of the built-in input components to add and edit the expenses. ...