I am using ninject in an asp.net web api project and have started receiving this intermittent ninject error:
\"Error loading Ninject component ICache No such
Found the solution and thought I would share.
The problem was that I was Using Ninject.MVC3 which seems to be wrong package for Web-API.
Instead I need to use Ninject.Web.WebApi-RC package as described by this post:
http://www.eyecatch.no/blog/2012/06/using-ninject-with-webapi-rc/
Steps I followed for a fix are