Introduction to Application State
Explore how to manage application state in Blazor WebAssembly by creating a persistent shopping cart. Understand dependency injection and how to retain cart contents and totals across multiple pages during navigation.
We'll cover the following...
We'll cover the following...
Overview
Sometimes, we need our applications to maintain state between different pages. We can accomplish this by using dependency injection (DI). ...