Trong phương thức ConfigureServices của lớp Startup, bạn sẽ muốn thêm:
services.AddSingleton<IConnectionMultiplexer>(ConnectionMultiplexer.Connect("yourConnectionString"));
Sau đó, bạn có thể sử dụng phụ thuộc chèn bằng cách thay đổi chữ ký phương thức khởi tạo của bạn thành một cái gì đó như sau:
public YourController : Controller
{
private readonly IConnectionMultiplexer _connectionMultiplexer;
public YourController(IConnectionMultiplexer multiplexer)
{
this._connectionMultiplexer = multiplexer;
}
}