Registering DynaCaches with SimpleInjector
问题 Hi I am attempting to use Dynacache in my solution to cache data I am returning from Database so when I use Telerik grid to filter the data page etc I dont have to go back to the DB to get the data each time. The example on the DynaCache page shows it being used with Ninject DI as below: kernel.Bind<IDynaCacheService>().To<MemoryCacheService>(); kernel.Bind<ITestClass>().To(Cacheable.CreateType<TestClass>()); I am using SimpleInjector as my DI container. Has anyone used Dynacache with