Blazor WebAssembly applications that have the need to exchange large amounts of data will probably run into communication overhead when using REST. With gRPC, you can use a more efficient way to exchange data with the back end.
What Is gRPC?
Before we were using SOAP and REST, developers were using Remote Procedure Calls (RPC) to invoke methods in another process. We've seen how to communicate with REST APIs between two applications, but the serialization to and from JSON causes some overhead. This is mostly done ...