Skip to content

Instantly share code, notes, and snippets.

@sholfen
Last active May 12, 2019 07:47
Show Gist options
  • Save sholfen/410567bab2df6085e450c9017cc04b52 to your computer and use it in GitHub Desktop.
Save sholfen/410567bab2df6085e450c9017cc04b52 to your computer and use it in GitHub Desktop.
DI in ASP.NET MVC Core
foreach (Type type in System.Reflection.Assembly.GetExecutingAssembly().ExportedTypes.Where(t => t.FullName.EndsWith("Service")))
{
if (!type.IsInterface)
{
services.AddTransient(type.GetInterfaces().First(), type);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment