ฉันได้อ่านเอกสารการกำหนดค่าบน ASP.NET core แล้ว เอกสารระบุว่าคุณสามารถเข้าถึงการกำหนดค่าได้จากทุกที่ในแอปพลิเคชัน
ด้านล่างนี้คือ Startup.cs ที่สร้างโดยเทมเพลต
public class Startup
{
public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
if (env.IsEnvironment("Development"))
{
// This will push telemetry data through Application Insights pipeline faster, allowing you to view results immediately.
builder.AddApplicationInsightsSettings(developerMode: true);
}
builder.AddEnvironmentVariables();
Configuration = builder.Build();
}
public IConfigurationRoot Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddApplicationInsightsTelemetry(Configuration);
services.AddMvc();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
app.UseApplicationInsightsRequestTelemetry();
app.UseApplicationInsightsExceptionTelemetry();
app.UseMvc();
}
}
ดังนั้นในStartup.cs
การกำหนดค่าการตั้งค่าทั้งหมด Startup.cs จึงมีคุณสมบัติที่ชื่อConfiguration
สิ่งที่ฉันไม่เข้าใจว่าคุณเข้าถึงการกำหนดค่านี้ในคอนโทรลเลอร์หรือที่ใดก็ได้ในแอปพลิเคชันได้อย่างไร MS ขอแนะนำให้ใช้รูปแบบตัวเลือกแต่ฉันมีคู่คีย์ - ค่าเพียง 4-5 คู่ดังนั้นฉันจึงไม่ต้องการใช้รูปแบบตัวเลือก ฉันแค่ต้องการเข้าถึง Configuration ในแอปพลิเคชัน ฉันจะฉีดมันในชั้นเรียนใดได้อย่างไร?