I use ninject framework. In my code I have a Lazy object. I can create an instance, but when I call the value property I got an exception.
private La
Bind(typeof (Lazy)).ToMethod( ctx => new Lazy(() => Kernel.Get()));