Composition roots from other assemblies or projects can be used as a source of bindings. When you add a binding to a composition from another assembly or project, the roots of the composition with the RootKind.Exposed type will be used in the bindings automatically. For example, in some assembly a composition is defined as:
public partial class CompositionInOtherProject
{
private static void Setup() =>
DI.Setup()
.Hint(Hint.Resolve, "Off")
.Bind().To(() => 99)
.Bind().As(Lifetime.Singleton).To<MyDependency>()
.Bind().To<MyGenericService<TT>>()
.Root<IMyGenericService<TT>>("GetMyService", kind: RootKinds.Exposed);
}using Pure.DI;
using static Pure.DI.Lifetime;
using OtherAssembly;
DI.Setup(nameof(Composition))
// Binds to exposed composition roots from other project
.Bind().As(Singleton).To<CompositionWithGenericRootsInOtherProject>()
.Root<Program>("Program");
var composition = new Composition();
var program = composition.Program;
program.DoSomething(99);
partial class Program(IMyGenericService<int> myService)
{
public void DoSomething(int value) => myService.DoSomething(value);
}Running this code sample locally
- Make sure you have the .NET SDK 10.0 or later installed
dotnet --list-sdk- Create a net10.0 (or later) console application
dotnet new console -n Sample- Add a reference to the NuGet package
dotnet add package Pure.DI- Copy the example code into the Program.cs file
You are ready to run the example 🚀
dotnet runImportant
At this point, a composition from another assembly or another project can be used for this purpose. Compositions from the current project cannot be used in this way due to limitations of the source code generators.
The following partial class will be generated:
partial class Composition
{
#if NET9_0_OR_GREATER
private readonly Lock _lock = new Lock();
#else
private readonly Object _lock = new Object();
#endif
private OtherAssembly.CompositionWithGenericRootsInOtherProject? _singletonCompositionWithGenericRootsInOtherProject62;
public Program Program
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
OtherAssembly.IMyGenericService<int> transientIMyGenericService37;
if (_singletonCompositionWithGenericRootsInOtherProject62 is null)
lock (_lock)
if (_singletonCompositionWithGenericRootsInOtherProject62 is null)
{
_singletonCompositionWithGenericRootsInOtherProject62 = new OtherAssembly.CompositionWithGenericRootsInOtherProject();
}
OtherAssembly.CompositionWithGenericRootsInOtherProject localInstance_1182D127 = _singletonCompositionWithGenericRootsInOtherProject62;
transientIMyGenericService37 = localInstance_1182D127.GetMyService<int>();
return new Program(transientIMyGenericService37);
}
}
}