I din Startup-klasses ConfigureServices-metode skal du tilføje:
services.AddSingleton<IConnectionMultiplexer>(ConnectionMultiplexer.Connect("yourConnectionString"));
Du kan derefter bruge afhængighedsindsprøjtningen ved at ændre din konstruktørsignatur til noget som dette:
public YourController : Controller
{
private readonly IConnectionMultiplexer _connectionMultiplexer;
public YourController(IConnectionMultiplexer multiplexer)
{
this._connectionMultiplexer = multiplexer;
}
}