Book Image

Building Blazor WebAssembly Applications with gRPC

By : Václav Pekárek
5 (1)
Book Image

Building Blazor WebAssembly Applications with gRPC

5 (1)
By: Václav Pekárek

Overview of this book

Building Blazor WebAssembly Applications with gRPC will take you to the next level in your web development career. After working through all the essentials of gRPC, Blazor, and source generators, you will be far from a beginner C# developer and would qualify as a developer with intermediate knowledge of the Blazor ecosystem. After a quick primer on the basics of Blazor technology, REST, gRPC, and source generators, you’ll dive straight into building Blazor WASM applications. You’ll learn about everything from two-way bindings and Razor syntax to project setup. The practical emphasis continues throughout the book as you steam through creating data repositories, working with REST, and building and registering gRPC services. The chapters also cover how to manage source generators, C# and debugging best practices, and more. There is no shorter path than this book to solidify your gRPC-enabled web development knowledge. By the end of this book, your knowledge of building Blazor applications with one of the most modern and powerful frameworks around will equip you with a highly sought-after skill set that you can leverage in the best way possible.
Table of Contents (10 chapters)

Registering data services

We have created a data service for our database calls. We now need to register it. But we have created the service as an abstract class, which means we can’t use the class itself. We need to implement other services that will inherit from our BaseService<TEntity, TModel> class.

First, we can create a service for the Movie entity, like so:

Services\MovieService.cs

using AutoMapper;
using MediaLibrary.Server.Data;
namespace MediaLibrary.Server.Services;
public class MovieService : BaseService<Movie,
  Shared.Model.MovieModel>
{
    public MovieService(MediaLibraryDbContext dbContext,
      IMapper mapper) : base(dbContext, mapper)
    {
    }
}

The preceding code snippet shows the whole file for the MovieService class. The class has an inheritance for the BaseService class, where we specify Movie and MovieModel as the generic parameters...