标签: asp.net asp.net-mvc entity-framework asp.net-mvc-4 ef-code-first
我在名为Cache Layer的seprate项目中有Entity Framework level-2缓存类,它使用HttpRuntime.Cache进行缓存,现在我想在我的服务层中使用它来缓存EF Code First Database结果。
HttpRuntime.Cache
HttpRuntime和服务层之间是否存在耦合?如果是,我如何在没有耦合的服务层中使用HttpRuntime.Cache?
HttpRuntime