April 2024
Intermediate to advanced
366 pages
7h 15m
English
When running Blazor using WebAssembly (InteractiveWebAssembly or InteractiveAuto) we need to be able to retrieve data and also change our data. For that to work, we need an API to access the data. In this chapter, we will create a web API using Minimal API.
When using Blazor Server, the API will be secured by the page (if we add an Authorize attribute), so we get that for free. But with WebAssembly, everything will be executed in the browser, so we need something that WebAssembly can communicate with to update the data on the server.
To do this, we will need to cover the following topics:
Make sure you have read the previous chapters or use the Chapter06 folder ...
Read now
Unlock full access