Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Simplify.DI

Alexanderius edited this page Jun 23, 2019 · 23 revisions

Simplify.DI Documentation

Decouples users and frameworks (that are based on Simplify.DI) from dependency on IOC containers. Instead of that, they will only depend on Simplify.DI interface.

Provides DIContainer.Current ambient context as centralized IOC container. Provides unified Interface for creation IOC container providers (wrappers) for IOC container frameworks.

Using DIContainer.Current and respective container provider you can switch between any IOC container without rewriting your code. Also as a centralized IOC container you can use it for building, for example, some framework which needs to use constructor injection and at the same time use it by that framework user (example using it in framework: registration, resolving with lifetime scope).

Available at NuGet as binary package

By default DIContainer.Current initialized with DryIocDIProvider container provider (DryIOC).

Another container providers available:

Please create an issue, if you want another container provider.

Main IOC container interface is IDIContainerProvider

Examples

Entities

public interface IFoo
{
}

public class Foo : IFoo
{
    public Foo(IBar bar)
    {
    }
}

public class Foo2 : IFoo
{
    public Foo2(IBar bar, string someParameter)
    {
    }
}

public interface IBar
{
}

public class Bar : IBar
{
}

public class Bar2 : IBar
{
    public Bar2(string someParameter)
    {
    }
}

Registration

// Simple registration
DIContainer.Current.Register<IBar, Bar>();
DIContainer.Current.Register<IFoo, Foo>();

// Registration with delegate
DIContainer.Current.Register<IBar>(p => new Bar2("test"));

// Registration with delegate and type resolve
DIContainer.Current.Register<IFoo>(p => new Foo2(p.Resolve<IBar>(), "test"));

Resolve

var myObj = DIContainer.Current.Resolve<IBar>();

Verification

Container verification is a process of building registered objects graph and checking what all required types are present in a container and there is no registrations lifetime mismatches

DIContainer.Current.Verify();

In case of any container mismatches an exception will be thrown, exact type of the exception and messages will depend on current container provider

Scopes

3 type of scopes available:

  • PerLifetimeScope (default scope) - only one instance will be created for current lifetime scope
  • Singleton - only one instance will be created per container
  • Transient - new instance will be created on every Resolve request

Using PerLifetimeScope scope

Lifetime scope registration

// Simple registration
DIContainer.Current.Register<IBar, Bar>(LifetimeType.PerLifetimeScope);

// Any dependency while registration with delegate should be resolved with delegate parameter `p`, it is current scope resolve provider.
DIContainer.Current.Register<IFoo>(p => new Foo2(p.Resolve<IBar>(), "Test"), LifetimeType.PerLifetimeScope);

Lifetime scope usage

// Note, what scope.Container actually it is the same container as DIContainer.Current, for example, if using SimpleInjector, but with DryIoc it will be child container.
using (var scope = DIContainer.Current.BeginLifetimeScope())
{
    var myObject = scope.Resolver.Resolve<IFoo>();
}

Registration specific to IOC container

You can use any IOC container to directly register types or perform specific actions, for example, with Simple Injector:

With direct container registration

var provider = new SimpleInjectorDIProvider();
DIContainer.Current = provider;

provider.Container.RegisterSingleton<IFoo>();
...

Standard registrations with SimpleInjector container verification example

var provider = new SimpleInjectorDIProvider();
DIContainer.Current = provider;

...
DIContainer.Current.Register<IBar, Bar>();
...

provider.Container.Verify();

Special integrations