Thiru LogsAll FAQs
.NET & C# ยท ASP.NET Core

How would you solve an interview scenario involving configuration and options pattern?

AdvancedUpdated 2026-08-08

For a singleton service that must react to configuration changes, inject IOptionsMonitor<T> and read CurrentValue or subscribe to OnChange.

#aspnet-core#configuration and options pattern