StartupクラスのConfigureServicesメソッドに、次のものを追加します。
services.AddSingleton<IConnectionMultiplexer>(ConnectionMultiplexer.Connect("yourConnectionString"));
次に、コンストラクターのシグネチャを次のように変更することで、依存性注入を使用できます。
public YourController : Controller
{
private readonly IConnectionMultiplexer _connectionMultiplexer;
public YourController(IConnectionMultiplexer multiplexer)
{
this._connectionMultiplexer = multiplexer;
}
}