Skip to content

Instantly share code, notes, and snippets.

@jrob5756
Created September 29, 2018 17:35
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/1db22a5fc80f028083fc8647f5276c36 to your computer and use it in GitHub Desktop.
Save jrob5756/1db22a5fc80f028083fc8647f5276c36 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>());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment