以编程方式配置 EntLib CAB CacheManager
目前,我必须在 app.config 中包含大量 XML 才能使 CAB CacheManager 运行,而且我宁愿将配置隐藏在代码中。
有没有办法以编程方式配置企业库缓存应用程序块的缓存管理器?
Currently I'm having to include a significant chunk of XML in the app.config to get the CAB CacheManager going and I'd rather hide the configuration away in my code.
Is there any way to programmatically configure an Enterprise Library Caching Application Block's CacheManager?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在 web.config 中使用 configSource 属性将 CAB 配置移至另一个配置文件?
例如:
然后,在 Config\Caching.config 中:
..
据我所知,您可以为 web.config 中的每个 configSection 使用单独的配置文件
。
why don't you use configSource attribute in your web.config to move to another config file the CAB configuration?
For Example:
And then, in Config\Caching.config:
..
As far as I know, you can use a separate config file for each configSection in your web.config
s.