Runtime Dependency Resolution Using AutoFac in .NET 6 Isolated Azure Functions
Need to specify a dependency at runtime in an Azure Function? Can it be done?
Need to specify a dependency at runtime in an Azure Function? Can it be done?
Autofac allows for using Named or Keyed dependencies. Can these be used directly in .NET 6 Isolated Azure Functions without additional layers?
Autofac allows for using Named or Keyed dependencies. Can these be used with .NET 6 Isolated Azure Functions?
Having the ability to use the Inversion of Control container of choice in your application is important. But can you use AutoFac with Azure Functions? Let’s find out!
Beginner friendly usage of a HttpClient in a console application to make a simple request but using dependency injection to create HttpClient instances.