Dependency Injection

Dependency Injection is an important technique in Blazor Server .NET 6. In this tutorial, you will learn:

  • What is Dependency Injection?
  • Why do you need the Dependency Injection?
  • How to register a service?
  • How to inject a service?
  • Comparing between service scopes.
You can download the example code used in this topic on GitHub.

What is Dependency Injection in Blazor Server?

Dependency Injection will help you to create register a class/interface to the Service Provider, then the class/interface became a service. Whenever a service is required, the Service Provider will select the appropriated service in the pool and injecting it to the requesting class or component. The following image illustrates the Dependency Injection technique:

dependency-injection-blazor-server.png


Why do you need to use Dependency Injection in Blazor Server?

By using Dependency Injection technique, you will not worry about taking care of a service lifetime nor how to initialize the service. Your project will have decoupled classes that incredibly easy to maintain, testable, clean.


How to register a service?

Before you can inject a service to a component, you first need to register the instance. There are several ways to register a service, you can register a service by its class or interface name. All services are registered at Program.cs, the register process must be placed between WebApplication.CreateBuilder(args) and builder.Build().

Register a service with class name

Assuming you have the following class:

public class ProcessService
{
    public Guid ExampleId { get; set; } = Guid.NewGuid();

    public void Process()
    {
    }
}

Then you can register this class to become a service at Program.cs. For example:

builder.Services.AddTransient<ProcessService>();

In the above example, transient is the scope of the service. You will learn about service scope later in this tutorial.

Register a service with interface name

Assuming you have the following interface:

public interface IServiceInterface
{
    string ExampleString { get; set; }
}

And the following class:

public class ServiceWithInterface : IServiceInterface
{
    public string ExampleString { get; set; } = "Blazor School";
}

Then you can register this class to become a service at Program.cs. For example:

builder.Services.AddTransient<IServiceInterface, ServiceWithInterface>();

Service with primitive parameter

A service can have one or more parameter. Assuming you have the following class:

public class ServiceWithCustomData
{
    public string ExampleString { get; set; } = "";

    public ServiceWithCustomData(string exampleString)
    {
        ExampleString = exampleString;
    }
}

Then you can pass the parameter when registering the service. For example:

builder.Services.AddTransient<ServiceWithCustomData>(serviceProvider => new ("Blazor School"));

Dependent service

A service can depend on another service. Assuming you have the following class:

public class DependentService
{
    public ServiceWithCustomData ServiceWithCustomData { get; set; }

    public DependentService(ServiceWithCustomData serviceWithCustomData)
    {
        ServiceWithCustomData = serviceWithCustomData;
    }
}

In this case, you must register the dependency service must. In this case, the DependentService service depends on the ServiceWithCustomData service so the ServiceWithCustomData must be registered first. Once the ServiceWithCustomData is register, you can proceed to register the DependentService as follows:

builder.Services.AddTransient<DependentService>(serviceProvider => new(serviceProvider.GetRequiredService<ServiceWithCustomData>()));
You can also register the DependentService with its interface name. It is irrelevant to the service is parameterized or not.

How to inject a service?

Once you have your service registered to the Service Provider, you can inject your service to a component or another service. If you registered your service with the class name, then you can inject the service to your component as follows:

@inject DependentService DependentService

Where:

inject-with-class-name.png

If you registered your service with the interface name, you must use that interface to inject the service. For example:

@inject IServiceInterface ServiceWithInterface
Keep in mind that if you registered your service with class name and you use your interface name to inject the service, you will encounter the following error: Error: System.InvalidOperationException: Cannot provide a value for property '<Your Instance Name>' on type '<Your Class/Interface Name>'. There is no registered service of type '<Your Class/Interface Name>'

Comparing between service scopes

When you register a service, you will need to specify its scope. There are 3 scopes for you to specify:

  1. Singleton.
  2. Scoped.
  3. Transient.

Singleton service scope

The service with singleton scope will always have an instance in the Service Provider. The following image illustrates the singleton service scope:

singleton-scope.png

Scoped service scope

The scoped services will always have an instance for each browser tab in the Service Provider. The following image illustrates the scoped service:

scoped-service.png

Transient service scope

For transient services, the Service Provider will always create a new instance whenever it is injected. The following image illustrates the transient service:

transient-scope.png

BLAZOR SCHOOL
Designed and built with care by our dedicated team, with contributions from a supportive community. We strive to provide the best learning experience for our users.
Docs licensed CC-BY-SA-4.0
Copyright © 2021-2025 Blazor School
An unhandled error has occurred. Reload 🗙