Using PWA offline
I have been watching the talk from Steve Sanderson on his demo app CarChecker to try and get a grasp on how to allow offline use of a PWA. I'm using Blazor, .NET9 & EF9 for my own project but the talk is quite dated.
I was wondering what direction I should be looking if I want to do the following:
When the technician loses internet access he would still need to be able to access the data.
I was thinking of using a sqlite copy of the database with the requests logged somewhere to be fired to the API when there's internet connection. However I have no clue where to start
GitHub
GitHub - SteveSandersonMS/CarChecker: A sample Blazor WebAssembly a...
A sample Blazor WebAssembly application that includes authentication, in-browser data storage, offline support, localization, responsive layouts, and more. For a video walkthrough, see this link: -...
1 Reply
Synchronisation happens @ https://github.com/SteveSandersonMS/CarChecker/blob/master/Client/Data/LocalVehiclesStore.cs#L34
GitHub
CarChecker/Client/Data/LocalVehiclesStore.cs at master · SteveSand...
A sample Blazor WebAssembly application that includes authentication, in-browser data storage, offline support, localization, responsive layouts, and more. For a video walkthrough, see this link: -...