Skip to content

Instantly share code, notes, and snippets.

@jrob5756
Created September 29, 2018 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrob5756/53e9c52f37f74f7cfaa32aa5d2dfbd64 to your computer and use it in GitHub Desktop.
Save jrob5756/53e9c52f37f74f7cfaa32aa5d2dfbd64 to your computer and use it in GitHub Desktop.
public static class ServiceCollectionExtensions
{
public static void AddFactory<TService, TImplementation>(this IServiceCollection services)
where TService : class
where TImplementation : class, TService
{
services.AddTransient<TService, TImplementation>();
services.AddSingleton<Func<TService>>(x => () => x.GetService<TService>());
services.AddSingleton<IFactory<TService>, Factory<TService>>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment