ネットコアの構成を注入...私は基本クラスから私のクラスのDBActivityRepositoryに接続文字列を挿入したい依存性注入:私はネットコア2.0にいくつかの古いソフトウェアを移行しています2.0
。 ..
私は、基本クラスの作成に
this._DBHandler = new DBHandler(configuration);
か、それはこのようにそれを行うには良いですが設定を渡す必要があります。
private DBHandler _DBHandler;
private string connectionString;
public DBActivityRepository(IConfiguration configuration) : base(configuration)
{
// **Do I need this?**
this._DBHandler = new DBHandler(configuration);
connectionString = this._DBHandler.GetConnectionString();
}
ありがとう
https://www.codeproject.com/Articles/1204089/ASP-NET-Core-Dependency-Injection – Ramankingdom
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/依存性注入 – Ramankingdom