I'm having a hard time with Ninject V2's InRequestScope() for managing a UnitOfWork.
_kernel.Bind<UnitOfWork>().To<SqlUnitOfWork>().InRequestScope();
I expect whenever I request the UnitOfWork via the container that the same object is always returned throughout the request. However, in the debugger I have a breakpoint on the object's constructor and whenever a request is made to the container the constructor fires as though a new object is being created.
var uow = CreateKernel().Get<UnitOfWork>();
Has anyone had similar experiences as this or am I missing something critical?