ASP.NET Core 6 より前では、開発者は Startup.cs
と IConfiguration
を利用して、IHostEnvironment
クラス経由で構成設定にアクセスしていました。 ただし、.NET 6 と Visual Studio 2022 の導入により、Startup.cs
は使用されなくなりました。
最新のアプローチは、WebApplicationBuilder
によって返される WebApplication.CreateBuilder(args)
を活用します。このビルダーは、Configuration
と Environment
の両方のプロパティへの直接アクセスを提供します:
<code class="language-csharp">var builder = WebApplication.CreateBuilder(args); // Add services to the container. ... IConfiguration configuration = builder.Configuration; IWebHostEnvironment environment = builder.Environment;</code>
または、ビルダーのビルド後に取得される WebApplication
オブジェクトからこれらのプロパティにアクセスできます。
<code class="language-csharp">var app = builder.Build(); IConfiguration configuration = app.Configuration; IWebHostEnvironment environment = app.Environment;</code>
この合理化されたアクセスにより、サービスとミドルウェアのシームレスな構成が可能になります。 たとえば、appsettings.json
で使用するデータベース接続文字列を DbContext
から取得するのは簡単です。
<code class="language-csharp">builder.Services.AddDbContext<FestifyContext>(opt => { opt.UseSqlServer(configuration.GetConnectionString("Festify")); });</code>
.NET 6 以降のバージョン内の構成アクセスに関する包括的な詳細とその他の例については、公式の .NET 移行ガイドと提供されているコード サンプルを参照してください。
以上がASP.NET Core 6 の構成にアクセスするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。