I want to share the container across various layers in my application. I started creating a static class which initialises the container and register types in the container.
public class GeneralDIModule : NinjectModule
{
public override void Load()
{
Bind<IDataBroker>().To<DataBroker>().InSingletonScope();
}
}
public abstract class IoC
{
private static IKernel _container;
public static void Initialize()
{
_container = new StandardKernel(new GeneralDIModule(), new ViewModelDIModule());
}
public static T Get<T>()
{
return _container.Get<T>();
}
}
I noticed there is a Resolve method as well. What is the difference between Resolve and Get?
In my unit tests I don’t always want every registered type in my container. Is there a way of initializing an empty container and then register types I need. I’ll be mocking types as well in unit test so I’ll have to register them as well.
There is an Inject method, but it says lifecycle of instance is not managed?
Could someone please set me in right way?
How can I register, unregister objects and reset the container.