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.
Investigating a technique on how to debug service registrations when functionality isn’t working as expected.
Exploring Top Level statements in .NET 5 and manually setting up and using dependency injection with the Microsoft container.
Ever wanted to define a dependency as optional and only be loaded depending on consumption of your service?
How many times do you create a private options variable when using json serializer and end up with duplicate code? Let’s take a look at one option to help resolve this.
Exploring the multiple ways you can register your service dependencies with the new IHost found in ASP.NET Core 3 (Preview).