In Ninject3 there's a new .ToConstructor feature.
As described, it helps to strongly-type constructor arguments like:
Bind<IMyService>().ToConstructor(
ctorArg => new MyService(ctorArg.Inject<IFoo>(), ctorArg.Inject<IBar>()));
What's actually the difference between using .ToConstructor and .ToMethod in an almost the same way:
Bind<IMyService>().ToMethod(
x => new MyService(x.Kernel.Get<IFoo>(), x.Kernel.Get<IBar>()));
Is it just a syntax sugar to avoid using Kernel.Get<>() or is there something more that I'm missing?