Supports .NET starting with .NET Framework 2.0, released 2005-10-27, and all newer versions.
Pure.DI is not a framework or library, but a source code generator for creating object graphs. To make them accurate, the developer uses a set of intuitive hints from the Pure.DI API. During the compilation phase, Pure.DI determines the optimal graph structure, checks its correctness, and generates partial class code to create object graphs in the Pure DI paradigm using only basic language constructs. The resulting generated code is robust, works everywhere, throws no exceptions, does not depend on .NET library calls or .NET reflections, is efficient in terms of performance and memory consumption, and is subject to all optimizations. This code can be easily integrated into an application because it does not use unnecessary delegates, additional calls to any methods, type conversions, boxing/unboxing, etc.
- DI without any IoC/DI containers, frameworks, dependencies and hence no performance impact or side effects.
Pure.DI is actually a .NET code generator. It uses basic language constructs to create simple code as well as if you were doing it yourself: de facto it's just a bunch of nested constructor calls. This code can be viewed, analyzed at any time, and debugged.
- A predictable and verified dependency graph is built and validated on the fly while writing code.
All logic for analyzing the graph of objects, constructors and methods takes place at compile time. Pure.DI notifies the developer at compile time of missing or cyclic dependencies, cases when some dependencies are not suitable for injection, etc. The developer has no chance to get a program that will crash at runtime because of some exception related to incorrect object graph construction. All this magic happens at the same time as the code is written, so you have instant feedback between the fact that you have made changes to your code and the fact that your code is already tested and ready to use.
- Does not add any dependencies to other assemblies.
When using pure DI, no dependencies are added to assemblies because only basic language constructs and nothing more are used.
- Highest performance, including compiler and JIT optimization and minimal memory consumption.
All generated code runs as fast as your own, in pure DI style, including compile-time and run-time optimization. As mentioned above, graph analysis is done at compile time, and at runtime there are only a bunch of nested constructors, and that's it. Memory is spent only on the object graph being created.
- It works everywhere.
Since the pure DI approach does not use any dependencies or .NET reflection at runtime, it does not prevent the code from running as expected on any platform: Full .NET Framework 2.0+, .NET Core, .NET, UWP/XBOX, .NET IoT, Xamarin, Native AOT, etc.
- Ease of Use.
The Pure.DI API is very similar to the API of most IoC/DI libraries. And this was a conscious decision: the main reason is that programmers don't need to learn a new API.
- Superfine customization of generic types.
In Pure.DI it is proposed to use special marker types instead of using open generic types. This allows you to build the object graph more accurately and take full advantage of generic types.
- Supports the major .NET BCL types out of the box.
Pure.DI already supports many of BCL types like
Array
,IEnumerable<T>
,IList<T>
,IReadOnlyCollection<T>
,IReadOnlyList<T>
,ISet<T>
,IProducerConsumerCollection<T>
,ConcurrentBag<T>
,Func<T>
,ThreadLocal
,ValueTask<T>
,Task<T>
,MemoryPool<T>
,ArrayPool<T>
,ReadOnlyMemory<T>
,Memory<T>
,ReadOnlySpan<T>
,Span<T>
,IComparer<T>
,IEqualityComparer<T>
and etc. without any extra effort. - Good for building libraries or frameworks where resource consumption is particularly critical.
Its high performance, zero memory consumption/preparation overhead, and lack of dependencies make it ideal for building libraries and frameworks.
interface IBox<out T>
{
T Content { get; }
}
interface ICat
{
State State { get; }
}
enum State { Alive, Dead }
record CardboardBox<T>(T Content): IBox<T>;
class ShroedingersCat(Lazy<State> superposition): ICat
{
// The decoherence of the superposition
// at the time of observation via an irreversible process
public State State => superposition.Value;
}
Important
Our abstraction and implementation knows nothing about the magic of DI or any frameworks.
Add the Pure.DI package to your project:
Let's bind the abstractions to their implementations and set up the creation of the object graph:
DI.Setup(nameof(Composition))
// Models a random subatomic event that may or may not occur
.Bind().As(Singleton).To<Random>()
// Quantum superposition of two states: Alive or Dead
.Bind().To((Random random) => (State)random.Next(2))
.Bind().To<ShroedingersCat>()
// Cardboard box with any contents
.Bind().To<CardboardBox<TT>>()
// Composition Root
.Root<Program>("Root");
Note
In fact, the Bind().As(Singleton).To<Random>()
binding is unnecessary since Pure.DI supports many .NET BCL types out of the box, including Random. It was added just for the example of using the Singleton lifetime.
The above code specifies the generation of a partial class named Composition, this name is defined in the DI.Setup(nameof(Composition))
call. This class contains a Root property that returns a graph of objects with an object of type Program as the root. The type and name of the property is defined by calling Root<Program>("Root")
. The code of the generated class looks as follows:
partial class Composition
{
private object _lock = new object();
private Random? _random;
public Program Root
{
get
{
var stateFunc = new Func<State>(() => {
if (_random == null)
lock (_lock)
if (_random == null)
_random = new Random();
return (State)_random.Next(2)
});
return new Program(
new CardboardBox<ICat>(
new ShroedingersCat(
new Lazy<Sample.State>(
stateFunc))));
}
}
public T Resolve<T>() { ... }
public object Resolve(Type type) { ... }
}
The public Program Root { get; }
property here is a Composition Root, the only place in the application where the composition of the object graph for the application takes place. Each instance is created by only basic language constructs, which compiles with all optimizations with minimal impact on performance and memory consumption. In general, applications may have multiple composition roots and thus such properties. Each composition root must have its own unique name, which is defined when the Root<T>(string name)
method is called, as shown in the above code.
class Program(IBox<ICat> box)
{
// Composition Root, a single place in an application
// where the composition of the object graphs
// for an application take place
static void Main() => new Composition().Root.Run();
private void Run() => Console.WriteLine(box);
}
Tip
Pure.DI creates efficient code in a pure DI paradigm, using only basic language constructs as if you were writing code by hand. This allows you to take full advantage of Dependency Injection everywhere and always, without any compromise!
The full analog of this application with top-level statements can be found here.
Just try!
Clone a sample project:
git clone https://github.com/DevTeam/Pure.DI.Example.git
And run it from solution root folder
cd ./Pure.DI.Example
dotnet run
- Auto-bindings
- Injections of abstractions
- Composition roots
- Resolve methods
- Simplified binding
- Factory
- Simplified factory
- Class arguments
- Root arguments
- Tags
- Field injection
- Method injection
- Property injection
- Default values
- Required properties or fields
- Root binding
- Async Root
- Transient
- Singleton
- PerResolve
- PerBlock
- Scope
- Auto scoped
- Default lifetime
- Default lifetime for a type
- Default lifetime for a type and a tag
- Disposable singleton
- Async disposable singleton
- Async disposable scope
- Func
- Enumerable
- Enumerable generics
- Array
- Lazy
- Task
- ValueTask
- Manually started tasks
- Span and ReadOnlySpan
- Tuple
- Weak Reference
- Async Enumerable
- Service collection
- Func with arguments
- Func with tag
- Keyed service provider
- Service provider
- Service provider with scope
- Overriding the BCL binding
- Generics
- Generic composition roots
- Complex generics
- Generic composition roots with constraints
- Generic async composition roots with constraints
- Custom generic argument
- Constructor ordinal attribute
- Member ordinal attribute
- Tag attribute
- Type attribute
- Inject attribute
- Custom attributes
- Custom universal attribute
- Custom generic argument attribute
- Bind attribute
- Bind attribute with lifetime and tag
- Bind attribute for a generic type
- Resolve hint
- ThreadSafe hint
- OnDependencyInjection hint
- OnCannotResolve hint
- OnNewInstance hint
- ToString hint
- Check for a root
- Composition root kinds
- Tag Type
- Tag Unique
- Tag on injection site
- Tag on a constructor argument
- Tag on a member
- Tag on a method argument
- Tag on injection site with wildcards
- Dependent compositions
- Accumulators
- Global compositions
- Partial class
- A few partial classes
- Tracking disposable instances per a composition root
- Tracking disposable instances in delegates
- Tracking async disposable instances per a composition root
- Tracking async disposable instances in delegates
- Exposed roots
- Exposed roots with tags
- Exposed roots via arg
- Exposed roots via root arg
- Exposed generic roots
- Exposed generic roots with args
- Console
- UI
- Web
- Git repo with examples
Each generated class, hereafter called a composition, must be customized. Setup starts with a call to the Setup(string compositionTypeName)
method:
DI.Setup("Composition")
.Bind<IDependency>().To<Dependency>()
.Bind<IService>().To<Service>()
.Root<IService>("Root");
The following class will be generated
partial class Composition
{
// Default constructor
public Composition() { }
// Scope constructor
internal Composition(Composition baseComposition) { }
// Composition root
public IService Root
{
get
{
return new Service(new Dependency());
}
}
public T Resolve<T>() { ... }
public T Resolve<T>(object? tag) { ... }
public object Resolve(Type type) { ... }
public object Resolve(Type type, object? tag) { ... }
}
The compositionTypeName parameter can be omitted
- if the setup is performed inside a partial class, then the composition will be created for this partial class
- for the case of a class with composition kind
CompositionKind.Global
, see this example
Setup arguments
The first parameter is used to specify the name of the composition class. All sets with the same name will be combined to create one composition class. Alternatively, this name may contain a namespace, e.g. a composition class is generated for Sample.Composition
:
namespace Sample
{
partial class Composition
{
...
}
}
The second optional parameter may have multiple values to determine the kind of composition.
This value is used by default. If this value is specified, a normal composition class will be created.
If you specify this value, the class will not be generated, but this setup can be used by others as a base setup. For example:
DI.Setup("BaseComposition", CompositionKind.Internal)
.Bind().To<Dependency>();
DI.Setup("Composition").DependsOn("BaseComposition")
.Bind().To<Service>();
If the CompositionKind.Public flag is set in the composition setup, it can also be the base for other compositions, as in the example above.
No composition class will be created when this value is specified, but this setup is the base setup for all setups in the current project, and DependsOn(...)
is not required.
Constructors
It's quite trivial, this constructor simply initializes the internal state.
It replaces the default constructor and is only created if at least one argument is specified. For example:
DI.Setup("Composition")
.Arg<string>("name")
.Arg<int>("id")
...
In this case, the constructor with arguments is as follows:
public Composition(string name, int id) { ... }
and there is no default constructor. It is important to remember that only those arguments that are used in the object graph will appear in the constructor. Arguments that are not involved cannot be defined, as they are omitted from the constructor parameters to save resources.
This constructor creates a composition instance for the new scope. This allows Lifetime.Scoped
to be applied. See this example for details.
Properties
To create an object graph quickly and conveniently, a set of properties (or a methods) is formed. These properties/methods are here called roots of compositions. The type of a property/method is the type of the root object created by the composition. Accordingly, each invocation of a property/method leads to the creation of a composition with a root element of this type.
DI.Setup("Composition")
.Bind<IService>().To<Service>()
.Root<IService>("MyService");
In this case, the property for the IService type will be named MyService and will be available for direct use. The result of its use will be the creation of a composition of objects with the root of IService type:
public IService MyService
{
get
{
...
return new Service(...);
}
}
This is recommended way to create a composition root. A composition class can contain any number of roots.
If the root name is empty, a private composition root with a random name is created:
private IService RootM07D16di_0001
{
get { ... }
}
This root is available in Resolve methods in the same way as public roots. For example:
DI.Setup("Composition")
.Bind<IService>().To<Service>()
.Root<IService>();
These properties have an arbitrary name and access modifier private and cannot be used directly from the code. Do not attempt to use them, as their names are arbitrarily changed. Private composition roots can be resolved by Resolve methods.
Methods
By default, a set of four Resolve methods is generated:
public T Resolve<T>() { ... }
public T Resolve<T>(object? tag) { ... }
public object Resolve(Type type) { ... }
public object Resolve(Type type, object? tag) { ... }
These methods can resolve both public and private composition roots that do not depend on any arguments of the composition roots. They are useful when using the Service Locator approach, where the code resolves composition roots in place:
var composition = new Composition();
composition.Resolve<IService>();
This is a not recommended way to create composition roots because Resolve methods have a number of disadvantages:
- They provide access to an unlimited set of dependencies.
- Their use can potentially lead to runtime exceptions, for example, when the corresponding root has not been defined.
- Lead to performance degradation because they search for the root of a composition based on its type.
To control the generation of these methods, see the Resolve hint.
Provides a mechanism to release unmanaged resources. These methods are generated only if the composition contains at least one singleton/scoped instance that implements either the IDisposable and/or DisposeAsync interface. The Dispose()
or DisposeAsync()
method of the composition should be called to dispose of all created singleton/scoped objects:
using var composition = new Composition();
or
await using var composition = new Composition();
To dispose objects of other lifetimes please see this or this examples.
Setup hints
Hints are used to fine-tune code generation. Setup hints can be used as shown in the following example:
DI.Setup("Composition")
.Hint(Hint.Resolve, "Off")
.Hint(Hint.ThreadSafe, "Off")
.Hint(Hint.ToString, "On")
...
In addition, setup hints can be commented out before the Setup method as hint = value
. For example:
// Resolve = Off
// ThreadSafe = Off
DI.Setup("Composition")
...
Both approaches can be mixed:
// Resolve = Off
DI.Setup("Composition")
.Hint(Hint.ThreadSafe, "Off")
...
The list of hints will be gradually expanded to meet the needs and desires for fine-tuning code generation. Please feel free to add your ideas.
Determines whether to generate Resolve methods. By default, a set of four Resolve methods are generated. Set this hint to Off to disable the generation of resolve methods. This will reduce the generation time of the class composition, and in this case no private composition roots will be generated. The class composition will be smaller and will only have public roots. When the Resolve hint is disabled, only the public roots properties are available, so be sure to explicitly define them using the Root<T>(string name)
method with an explicit composition root name.
Determines whether to use the OnNewInstance partial method. By default, this partial method is not generated. This can be useful, for example, for logging purposes:
internal partial class Composition
{
partial void OnNewInstance<T>(ref T value, object? tag, object lifetime) =>
Console.WriteLine($"'{typeof(T)}'('{tag}') created.");
}
You can also replace the created instance with a T
type, where T
is the actual type of the created instance. To minimize performance loss when calling OnNewInstance, use the three hints below.
Determines whether to generate the OnNewInstance partial method. By default, this partial method is generated when the OnNewInstance hint is On
.
This is a regular expression for filtering by instance type name. This hint is useful when OnNewInstance is in On state and it is necessary to limit the set of types for which the OnNewInstance method will be called.
This is a regular expression for filtering by tag. This hint is also useful when OnNewInstance is in On state and it is necessary to limit the set of tags for which the OnNewInstance method will be called.
This is a regular expression for filtering by lifetime. This hint is also useful when OnNewInstance is in On state and it is necessary to restrict the set of life times for which the OnNewInstance method will be called.
Determines whether to use the OnDependencyInjection partial method when the OnDependencyInjection hint is On
to control dependency injection. By default it is On
.
// OnDependencyInjection = On
// OnDependencyInjectionPartial = Off
// OnDependencyInjectionContractTypeNameRegularExpression = ICalculator[\d]{1}
// OnDependencyInjectionTagRegularExpression = Abc
DI.Setup("Composition")
...
Determines whether to generate the OnDependencyInjection partial method to control dependency injection. By default, this partial method is not generated. It cannot have an empty body because of the return value. It must be overridden when it is generated. This may be useful, for example, for Interception Scenario.
// OnDependencyInjection = On
// OnDependencyInjectionContractTypeNameRegularExpression = ICalculator[\d]{1}
// OnDependencyInjectionTagRegularExpression = Abc
DI.Setup("Composition")
...
To minimize performance loss when calling OnDependencyInjection, use the three tips below.
This is a regular expression for filtering by instance type name. This hint is useful when OnDependencyInjection is in On state and it is necessary to restrict the set of types for which the OnDependencyInjection method will be called.
This is a regular expression for filtering by the name of the resolving type. This hint is also useful when OnDependencyInjection is in On state and it is necessary to limit the set of permissive types for which the OnDependencyInjection method will be called.
This is a regular expression for filtering by tag. This hint is also useful when OnDependencyInjection is in the On state and you want to limit the set of tags for which the OnDependencyInjection method will be called.
This is a regular expression for filtering by lifetime. This hint is also useful when OnDependencyInjection is in On state and it is necessary to restrict the set of lifetime for which the OnDependencyInjection method will be called.
Determines whether to use the OnCannotResolve<T>(...)
partial method to handle a scenario in which an instance cannot be resolved. By default, this partial method is not generated. Because of the return value, it cannot have an empty body and must be overridden at creation.
// OnCannotResolve = On
// OnCannotResolveContractTypeNameRegularExpression = string|DateTime
// OnDependencyInjectionTagRegularExpression = null
DI.Setup("Composition")
...
To avoid missing failed bindings by mistake, use the two relevant hints below.
Determines whether to generate the OnCannotResolve<T>(...)
partial method when the OnCannotResolve hint is On to handle a scenario in which an instance cannot be resolved. By default it is On
.
// OnCannotResolve = On
// OnCannotResolvePartial = Off
// OnCannotResolveContractTypeNameRegularExpression = string|DateTime
// OnDependencyInjectionTagRegularExpression = null
DI.Setup("Composition")
...
To avoid missing failed bindings by mistake, use the two relevant hints below.
Determines whether to use a static partial method OnNewRoot<TContract, T>(...)
to handle the new composition root registration event.
// OnNewRoot = On
DI.Setup("Composition")
...
Be careful, this hint disables checks for the ability to resolve dependencies!
Determines whether to generate a static partial method OnNewRoot<TContract, T>(...)
when the OnNewRoot hint is On
to handle the new composition root registration event.
// OnNewRootPartial = Off
DI.Setup("Composition")
...
This is a regular expression for filtering by the name of the resolving type. This hint is also useful when OnCannotResolve is in On state and it is necessary to limit the set of resolving types for which the OnCannotResolve method will be called.
This is a regular expression for filtering by tag. This hint is also useful when OnCannotResolve is in On state and it is necessary to limit the set of tags for which the OnCannotResolve method will be called.
This is a regular expression for filtering by lifetime. This hint is also useful when OnCannotResolve is in the On state and it is necessary to restrict the set of lives for which the OnCannotResolve method will be called.
Determines whether to generate the ToString() method. This method provides a class diagram in mermaid format. To see this diagram, just call the ToString method and copy the text to this site.
// ToString = On
DI.Setup("Composition")
.Bind<IService>().To<Service>()
.Root<IService>("MyService");
var composition = new Composition();
string classDiagram = composition.ToString();
This hint determines whether the composition of objects will be created in a thread-safe way. The default value of this hint is On. It is a good practice not to use threads when creating an object graph, in this case the hint can be disabled, which will result in a small performance gain. For example:
// ThreadSafe = Off
DI.Setup("Composition")
.Bind<IService>().To<Service>()
.Root<IService>("MyService");
Overrides the modifiers of the public T Resolve<T>()
method.
Overrides the method name for public T Resolve<T>()
.
Overrides the modifiers of the public T Resolve<T>(object? tag)
method.
Overrides the method name for public T Resolve<T>(object? tag)
.
Overrides the modifiers of the public object Resolve(Type type)
method.
Overrides the method name for public object Resolve(Type type)
.
Overrides the modifiers of the public object Resolve(Type type, object? tag)
method.
Overrides the method name for public object Resolve(Type type, object? tag)
.
Overrides the modifiers of the public void Dispose()
method.
Overrides the modifiers of the public ValueTask DisposeAsync()
method.
Specifies whether the generated code should be formatted. This option consumes a lot of CPU resources. This hint may be useful when studying the generated code or, for example, when making presentations.
Indicates the severity level of the situation when, in the binding, an implementation does not implement a contract. Possible values:
- "Error", it is default value.
- "Warning" - something suspicious but allowed.
- "Info" - information that does not indicate a problem.
- "Hidden" - what's not a problem.
Specifies whether the generated code should be commented.
// Represents the composition class
DI.Setup(nameof(Composition))
.Bind<IService>().To<Service>()
// Provides a composition root of my service
.Root<IService>("MyService");
Appropriate comments will be added to the generated Composition
class and the documentation for the class, depending on the IDE used, will look something like this:
Then documentation for the composition root:
Install the DI template Pure.DI.Templates
dotnet new install Pure.DI.Templates
Create a "Sample" console application from the template di
dotnet new di -o ./Sample
And run it
dotnet run --project Sample
For more information about the template, please see this page.
Version update
When updating the version, it is possible that the previous version of the code generator remains active and is used by compilation services. In this case, the old and new versions of the generator may conflict. For a project where the code generator is used, it is recommended to do the following:
- After updating the version, close the IDE if it is open
- Delete the obj and bin directories
- Execute the following commands one by one
dotnet build-server shutdown
dotnet restore
dotnet build
Disabling API generation
Pure.DI automatically generates its API. If an assembly already has the Pure.DI API, for example, from another assembly, it is sometimes necessary to disable its automatic generation to avoid ambiguity. To do this, you need to add a DefineConstants element to the project files of these modules. For example:
<PropertyGroup>
<DefineConstants>$(DefineConstants);PUREDI_API_SUPPRESSION</DefineConstants>
</PropertyGroup>
Display generated files
You can set project properties to save generated files and control their storage location. In the project file, add the <EmitCompilerGeneratedFiles>
element to the <PropertyGroup>
group and set its value to true
. Build the project again. The generated files are now created in the obj/Debug/netX.X/generated/Pure.DI/Pure.DI/Pure.DI.SourceGenerator directory. The path components correspond to the build configuration, the target framework, the source generator project name, and the full name of the generator type. You can choose a more convenient output folder by adding the <CompilerGeneratedFilesOutputPath>
element to the application project file. For example:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
</Project>
Thank you for your interest in contributing to the Pure.DI project! First of all, if you are going to make a big change or feature, please open a problem first. That way, we can coordinate and understand if the change you're going to work on fits with current priorities and if we can commit to reviewing and merging it within a reasonable timeframe. We don't want you to waste a lot of your valuable time on something that may not align with what we want for Pure.DI.
The entire build logic is a regular console .NET application. You can use the build.cmd and build.sh files with the appropriate command in the parameters to perform all basic actions on the project, e.g:
Command | Description |
---|---|
g, generator | Builds and tests generator |
l, libs | Builds and tests libraries |
c, check | Compatibility checks |
p, pack | Creates NuGet packages |
r, readme | Generates README.md |
benchmarks, bm | Runs benchmarks |
deploy, dp | Deploys packages |
t, template | Creates and deploys templates |
u, upgrade | Upgrading the internal version of DI to the latest public version |
For example:
./build.sh pack
./build.cmd benchmarks
If you are using the Rider IDE, it already has a set of configurations to run these commands.
Tip
This project uses C# interactive build automation system for .NET
This tool helps to make .NET builds more efficient.
Contribution Prerequisites:
Installed .NET SDK 8.0
RU DotNext video
C# interactive build automation system for .NET
Examples of how to set up a composition
Articles
Array
Method | Mean | Error | StdDev | Ratio | RatioSD | Gen0 | Gen1 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|---|---|
'Hand Coded' | 168.1 ns | 1.72 ns | 1.44 ns | 1.00 | 0.00 | 0.0336 | - | 632 B | 1.00 |
'Pure.DI composition root' | 169.6 ns | 3.08 ns | 2.58 ns | 1.01 | 0.02 | 0.0336 | - | 632 B | 1.00 |
'Pure.DI Resolve<T>()' | 170.7 ns | 3.02 ns | 2.52 ns | 1.02 | 0.02 | 0.0336 | - | 632 B | 1.00 |
'Pure.DI Resolve(Type)' | 171.2 ns | 2.44 ns | 2.04 ns | 1.02 | 0.02 | 0.0336 | - | 632 B | 1.00 |
LightInject | 179.8 ns | 3.43 ns | 3.21 ns | 1.07 | 0.02 | 0.0336 | - | 632 B | 1.00 |
DryIoc | 200.5 ns | 3.89 ns | 4.16 ns | 1.20 | 0.02 | 0.0336 | - | 632 B | 1.00 |
Unity | 9,966.0 ns | 80.16 ns | 62.58 ns | 59.26 | 0.42 | 0.7629 | - | 14520 B | 22.97 |
Autofac | 27,170.5 ns | 308.31 ns | 257.45 ns | 161.60 | 1.87 | 1.5259 | 0.0610 | 28816 B | 45.59 |
Enum
Method | Mean | Error | StdDev | Ratio | RatioSD | Gen0 | Gen1 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|---|---|
'Pure.DI composition root' | 128.2 ns | 1.50 ns | 1.25 ns | 0.91 | 0.01 | 0.0184 | - | 344 B | 1.00 |
'Pure.DI Resolve(Type)' | 130.5 ns | 2.22 ns | 1.85 ns | 0.93 | 0.02 | 0.0184 | - | 344 B | 1.00 |
'Pure.DI Resolve<T>()' | 133.8 ns | 2.38 ns | 1.99 ns | 0.95 | 0.01 | 0.0184 | - | 344 B | 1.00 |
'Hand Coded' | 140.3 ns | 1.69 ns | 1.41 ns | 1.00 | 0.00 | 0.0184 | - | 344 B | 1.00 |
'Microsoft DI' | 181.3 ns | 2.01 ns | 1.67 ns | 1.29 | 0.02 | 0.0250 | - | 472 B | 1.37 |
LightInject | 277.7 ns | 3.47 ns | 2.89 ns | 1.98 | 0.03 | 0.0458 | - | 856 B | 2.49 |
DryIoc | 281.7 ns | 5.33 ns | 4.45 ns | 2.01 | 0.03 | 0.0458 | - | 856 B | 2.49 |
Unity | 7,768.1 ns | 124.10 ns | 152.41 ns | 55.43 | 1.24 | 0.7324 | - | 13752 B | 39.98 |
Autofac | 26,954.8 ns | 529.73 ns | 543.99 ns | 192.63 | 4.87 | 1.5259 | 0.0610 | 28944 B | 84.14 |
Func
Method | Mean | Error | StdDev | Ratio | RatioSD | Gen0 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|---|
'Pure.DI composition root' | 8.002 ns | 0.1496 ns | 0.1326 ns | 0.85 | 0.01 | 0.0013 | 24 B | 1.00 |
'Hand Coded' | 9.445 ns | 0.1727 ns | 0.1615 ns | 1.00 | 0.00 | 0.0013 | 24 B | 1.00 |
'Pure.DI Resolve<T>()' | 10.327 ns | 0.2801 ns | 0.2620 ns | 1.09 | 0.02 | 0.0013 | 24 B | 1.00 |
'Pure.DI Resolve(Type)' | 11.954 ns | 0.2458 ns | 0.2053 ns | 1.26 | 0.03 | 0.0013 | 24 B | 1.00 |
DryIoc | 62.785 ns | 1.1086 ns | 0.9828 ns | 6.65 | 0.19 | 0.0063 | 120 B | 5.00 |
LightInject | 296.638 ns | 3.9363 ns | 3.2870 ns | 31.37 | 0.80 | 0.0267 | 504 B | 21.00 |
Unity | 4,448.473 ns | 35.3598 ns | 33.0756 ns | 471.11 | 9.33 | 0.1297 | 2552 B | 106.33 |
Autofac | 10,857.806 ns | 115.9508 ns | 96.8241 ns | 1,147.95 | 22.40 | 0.7477 | 14008 B | 583.67 |
Singleton
Method | Mean | Error | StdDev | Ratio | RatioSD | Gen0 | Gen1 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|---|---|
'Hand Coded' | 7.600 ns | 0.1685 ns | 0.1316 ns | 1.00 | 0.00 | 0.0013 | - | 24 B | 1.00 |
'Pure.DI composition root' | 8.652 ns | 0.2436 ns | 0.2392 ns | 1.14 | 0.03 | 0.0013 | - | 24 B | 1.00 |
'Pure.DI Resolve<T>()' | 9.919 ns | 0.2579 ns | 0.2154 ns | 1.30 | 0.04 | 0.0013 | - | 24 B | 1.00 |
'Pure.DI Resolve(Type)' | 11.393 ns | 0.2199 ns | 0.1836 ns | 1.50 | 0.04 | 0.0013 | - | 24 B | 1.00 |
DryIoc | 27.581 ns | 0.3758 ns | 0.3138 ns | 3.63 | 0.07 | 0.0013 | - | 24 B | 1.00 |
'Simple Injector' | 33.807 ns | 0.3441 ns | 0.3050 ns | 4.45 | 0.10 | 0.0013 | - | 24 B | 1.00 |
'Microsoft DI' | 38.478 ns | 0.3053 ns | 0.2549 ns | 5.06 | 0.07 | 0.0013 | - | 24 B | 1.00 |
LightInject | 865.775 ns | 1.2567 ns | 1.0494 ns | 113.96 | 1.96 | 0.0010 | - | 24 B | 1.00 |
Unity | 7,677.459 ns | 99.8336 ns | 88.4999 ns | 1,011.67 | 17.40 | 0.1678 | - | 3184 B | 132.67 |
Autofac | 18,825.341 ns | 315.1815 ns | 263.1908 ns | 2,478.00 | 62.67 | 1.2817 | 0.0305 | 24208 B | 1,008.67 |
'Castle Windsor' | 31,318.225 ns | 408.7010 ns | 362.3028 ns | 4,123.56 | 74.24 | 1.2207 | - | 23912 B | 996.33 |
Ninject | 116,099.082 ns | 2,240.6371 ns | 2,991.1861 ns | 15,609.54 | 360.85 | 3.9063 | 0.9766 | 74096 B | 3,087.33 |
Transient
Method | Mean | Error | StdDev | Ratio | RatioSD | Gen0 | Gen1 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|---|---|
'Pure.DI composition root' | 7.903 ns | 0.1254 ns | 0.0979 ns | 0.97 | 0.02 | 0.0013 | - | 24 B | 1.00 |
'Hand Coded' | 8.135 ns | 0.1484 ns | 0.1158 ns | 1.00 | 0.00 | 0.0013 | - | 24 B | 1.00 |
'Pure.DI Resolve<T>()' | 10.337 ns | 0.2882 ns | 0.3848 ns | 1.28 | 0.04 | 0.0013 | - | 24 B | 1.00 |
'Pure.DI Resolve(Type)' | 11.442 ns | 0.2251 ns | 0.1995 ns | 1.41 | 0.03 | 0.0013 | - | 24 B | 1.00 |
LightInject | 20.096 ns | 0.0607 ns | 0.0507 ns | 2.47 | 0.04 | 0.0013 | - | 24 B | 1.00 |
'Microsoft DI' | 25.671 ns | 0.1087 ns | 0.0849 ns | 3.16 | 0.05 | 0.0013 | - | 24 B | 1.00 |
DryIoc | 27.474 ns | 0.5736 ns | 0.4478 ns | 3.38 | 0.07 | 0.0013 | - | 24 B | 1.00 |
'Simple Injector' | 34.814 ns | 0.2384 ns | 0.2114 ns | 4.28 | 0.05 | 0.0013 | - | 24 B | 1.00 |
Unity | 11,090.606 ns | 65.9897 ns | 61.7268 ns | 1,366.08 | 19.49 | 0.2747 | - | 5176 B | 215.67 |
Autofac | 28,646.903 ns | 355.7947 ns | 315.4027 ns | 3,520.24 | 61.91 | 1.7700 | 0.0916 | 33224 B | 1,384.33 |
'Castle Windsor' | 58,534.573 ns | 988.3103 ns | 876.1114 ns | 7,196.49 | 162.41 | 2.8687 | - | 54360 B | 2,265.00 |
Ninject | 253,820.129 ns | 4,777.4163 ns | 5,310.0855 ns | 31,080.38 | 673.81 | 6.8359 | 1.4648 | 131008 B | 5,458.67 |
Benchmarks environment
BenchmarkDotNet v0.13.12, Ubuntu 20.04.6 LTS (Focal Fossa)
Intel Xeon Platinum 8259CL CPU 2.50GHz, 1 CPU, 2 logical cores and 1 physical core
.NET SDK 8.0.201
[Host] : .NET 8.0.2 (8.0.224.6711), X64 RyuJIT AVX-512F+CD+BW+DQ+VL
DefaultJob : .NET 8.0.2 (8.0.224.6711), X64 RyuJIT AVX-512F+CD+BW+DQ+VL