views:

370

answers:

2

I'm a complete newbie to nInject

I've been pulling apart someone else's code and found several instances of nInject modules - classes that derive from Ninject.Modules.Module, and have a load method that contains most of their code.

These classes are called by invoking the LoadModule method of an instance of StandardKernel and passing it an instance of the module class.

Maybe I'm missing something obvious here, but what is the benefit of this over just creating a plain old class and calling its method, or perhaps a static class with a static method?

+2  A: 

The Ninject modules are the tools used to register the various types with the IoC container. The advantage is that these modules are then kept in their own classes. This allows you to put different tiers/services in their own modules.

// some method early in your app's life cycle
public Kernel BuildKernel()
{
    var modules = new INinjectModule[] 
    {
        new LinqToSqlDataContextModule(), // just my L2S binding
        new WebModule(),
        new EventRegistrationModule()
    };
    return new StandardKernel(modules);
}

// in LinqToSqlDataContextModule.cs
public class LinqToSqlDataContextModule
{
    public override Load()
    {
        Bind<IRepository>().To<LinqToSqlRepository>();
    }
}

Having multiple modules allows for separation of concerns, even within your IoC container.

The rest of you question sounds like it is more about IoC and DI as a whole, and not just Ninject. Yes, you could use static Configuration objects to do just about everything that an IoC container does. IoC containers become really nice when you have multiple hierarchies of dependencies.

public interface IInterfaceA {}
public interface IInterfaceB {}
public interface IInterfaceC {}

public class ClassA : IInterfaceA {}

public class ClassB : IInterfaceB
{
    public ClassB(IInterfaceA a){}
}

public class ClassC : IInterfaceC
{
    public ClassC(IInterfaceB b){}
}

Building ClassC is a pain at this point, with multiple depths of interfaces. It's much easier to just ask the kernel for an IInterfaceC.

var newc = ApplicationScope.Kernel.Get<IInterfaceC>();
Jarrett Meyer
LinqToSqlDataContextModule should extend StandardModule?
Mark Gibaud
@Mark Gibaud not in Ninject 2. StandardModule is gone and replaced with NinjectMdule - http://github.com/enkari/ninject/tree/master/src/Ninject/Modules/
Jarrett Meyer
That's a good example, but what about testability? I constantly hear how an DI/IoC container can help me with testability, but I'm having a hard time to find a real example that would showcase that Ninject won't pollute my code and also facilitate testability.Are there any real world open source projects that I could look at to get the idea?
Piotr Owsiak
Another problem is Ninject documentation. Are those guys ever going to provide such thing? Ninject is currently in version 2.0 and I can't even find solid documentation on 1.0.
Piotr Owsiak
@Piotr Owsiak What Ninject documentation? :)
Jarrett Meyer
@Jarrett Meyer: Exactly man! What documentation? AFAIK it just does not exists.
Piotr Owsiak
+1  A: 

Maybe I'm missing something obvious here, but what is the benefit of this over just creating a plain old class and calling its method, or perhaps a static class with a static method?

Yes, you can just call a bunch of Bind<X>().To<Z>() statements to setup the bindings, without a module.

The difference is that if you put these statements in a module then:

  • IKernel.Load(IEnumerable<Assembly>) can dynamically discover such modules through reflection and load them.
  • the bindings are logically grouped together under a name; you can use this name to unload them again with IKernel.Unload(string)
Wim Coenen