Communication
摘要
In the services chapter, you built a service using ASP.NET Core to retrieve the menu of pizzas. Retrieving data from a database with Blazor Server is easy, since your server can directly talk to the database. But with Blazor WebAssembly, and especially auto rendering, your application can also run in the browser, with no direct access to the database. In this chapter, you will add support to the Blazor client to talk to that service over the network using REST.