GithubHelp home page GithubHelp logo

rikvandenberg / azurefunctions.extensions.dependencyinjection Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 24 KB

An Microsoft.Extensions.DependencyInjection based implementation based on CJ van der Smissen Azure Function Autofac Dependency Injection

C# 100.00%
csharp azure-functions azure dependency-injection microsoft

azurefunctions.extensions.dependencyinjection's Introduction

Dependency Injection in Azure Functions using Microsoft.Extensions.DependencyInjection

A Microsoft.Extensions.DependencyInjection implementation based on the Autofac based implmenetation of CJ van der Smissen AzureFunctions.AutoFac

AzureFunctions.AutoFac on NuGet

AzureFunctions.Extensions.DependencyInjection on NuGet

Usage

In order to implement the dependency injection you have to create a class to configure DependencyInjection and add an attribute on your function class.

Configuration

Create a class and call the DependencyInjection.Initialize method. Perform the registrations as you normally would with Autofac.

public class Startup
{
    public Startup()
    {
        if(!DependencyInjection.IsInitialized)
        {
            DependencyInjection.Initialize(ConfigureServices);

            // Some other stuff such as AutoMapper.
            Mapper.Initialize(c =>
            {
                AzureFunctionsAutoMapperConfig.Initialize(c);
                BusinessAutoMapperConfig.Initialize(c);
            });
        }            
    }

    public static void ConfigureServices(IServiceCollection services)
    {
        services.AddSingleton<IQueryDispatcher, QueryDispatcher>();
        services.AddBusinessLayer();
    }
}

Function Attribute and Inject Attribute

Once you have created your Startup or Config class you need to annotate your function class indicating which config to use and annotate any parameters that are being injected.

Note: All injected parameters must be registered with the IServiceCollection in order for this to work.

[ConfigureServices(typeof(Startup))]
public class GreeterFunction
{
    [FunctionName("GreeterFunction")]
    public static HttpResponseMessage Run([HttpTrigger(AuthorizationLevel.Function, "get", Route = null)]HttpRequestMessage request, 
        TraceWriter log, 
        [Inject]IGreeter greeter, 
        [Inject]IGoodbyer goodbye)
    {
        log.Info("C# HTTP trigger function processed a request.");
        return request.CreateResponse(HttpStatusCode.OK, $"{greeter.Greet()} {goodbye.Goodbye()}");
    }
}

Using Named Dependencies [Unsupported]

Support has been added to use named dependencies. Simple add a name parameter to the Inject attribute to specify which instance to use.

[ConfigureServices(typeof(Startup))]
public class GreeterFunction
{
    [FunctionName("GreeterFunction")]
    public static HttpResponseMessage Run([HttpTrigger(AuthorizationLevel.Function, "get", Route = null)]HttpRequestMessage request, 
        TraceWriter log, 
        [Inject]IGreeter greeter, 
        [Inject("Main")]IGoodbyer goodbye, // Unsupported
        [Inject("Secondary")]IGoodbyer alternateGoodbye // Unsupported
    )
    {
        log.Info("C# HTTP trigger function processed a request.");
        return request.CreateResponse(HttpStatusCode.OK, $"{greeter.Greet()} {goodbye.Goodbye()} or {alternateGoodbye.Goodbye()}");
    }
}

azurefunctions.extensions.dependencyinjection's People

Contributors

rikvandenberg avatar

Watchers

 avatar

azurefunctions.extensions.dependencyinjection's Issues

Is there any example to use this DI for injecting EF Core DbContext

This is my startup class, and I cannot get the Azure function registered if I try to inject the context to my function.

public class Startup
{
    public Startup()
    {
        if (!DependencyInjection.IsInitialized)
        {
            DependencyInjection.Initialize(ConfigureServices);
        }
    }

    public static void ConfigureServices(IServiceCollection services)
    {
        var config = new ConfigurationBuilder()
            .SetBasePath(Environment.CurrentDirectory)
            .AddJsonFile("local.settings.json", optional: true, reloadOnChange: true)
            .AddEnvironmentVariables()
            .Build();

        var connectionString = config.GetConnectionString("SqlConnectionString");
        services.AddDbContext<_MyContext>(options => options.UseSqlServer(connectionString));
    }
}

License

This seems like it could be useful to a lot of people, but there isn't a license included, which I think means it defaults to not being usable (although by github's terms I think we could fork it and use the fork).

Could you add a license of some kind, please?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.