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 Issues

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?

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));
    }
}

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.