In de ConfigureServices-methode van uw Startup-klasse wilt u het volgende toevoegen:
services.AddSingleton<IConnectionMultiplexer>(ConnectionMultiplexer.Connect("yourConnectionString"));
U kunt dan de afhankelijkheidsinjectie gebruiken door uw constructorhandtekening te wijzigen in iets als dit:
public YourController : Controller
{
private readonly IConnectionMultiplexer _connectionMultiplexer;
public YourController(IConnectionMultiplexer multiplexer)
{
this._connectionMultiplexer = multiplexer;
}
}