Last active
November 15, 2020 19:22
-
-
Save ericsampson/bb37bd6da0748af2e928ee750563452a to your computer and use it in GitHub Desktop.
Configuration pattern and ConfigureServices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I have a service that needs to be initialized with a FooOptions and then added to the DI container. | |
// I also want to have IOptions<FooOptions> in the DI container to allow injection in other methods. | |
// How should I write my AddFoo extension method to support this? | |
public void ConfigureServices(IServiceCollection services) | |
{ | |
services.AddFoo(fooOptions => | |
{ | |
configuration.GetSection("FooOptions").Bind(fooOptions) | |
fooOptions.param = "override"; | |
}); | |
} | |
namespace Microsoft.Extensions.DependencyInjection | |
{ | |
public static class MyFooExtensions | |
{ | |
public static IServiceCollection AddFoo(this IServiceCollection services, | |
Action<FooOptions> setupOptions) | |
{ | |
services.Configure<FooOptions>(setupOptions); | |
services.AddSingleton<IFoo>(sp => | |
{ | |
var options = sp.GetRequiredService<IOptions<FooOptions>>(); | |
return new FooFactory(options.Value); | |
}; | |
return services; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ericsampson That looks very similar to my suggestion, with a slight tweak. I don't think your suggestion will quite work though. Try this instead: