Currently I am using DI in azure functions the standard way
public class Startup : FunctionsStartup
{
public override void Configure(IFunctionsHostBuilder builder)
{
/*Register dependencies*/
}
}
(Microsoft.Azure.Functions.Extensions.DependencyInjection.FunctionsStartup)
Is it possible to switch to https://github.com/dadhi/DryIoc container while still being able to use DI to resolve dependencies through constructor of azure functions? If so, how?