数据驱动的依赖注入
是否有任何框架允许数据驱动的依赖注入(最好是在 .NET 中)? 我正在考虑一些受 Spring.NET 启发的东西,例如,您可以在结构化数据库表中配置对象图,而不是使用 XML 配置文件。 在数据库而不是 XML 文件中配置应用程序有哪些优点和缺点?
Are there any frameworks out there that allow for data-driven dependency injection (ideally in .NET)? I'm thinking something inspired by Spring.NET for example, where you configure your object graphs in structured database tables, rather than using an XML config file. What would be the pros and cons of configuring your application in the database rather than an XML file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是 .Net IOC 框架 的列表
,以及微软的模式和实践,我喜欢... Unity
Here is a list of .Net IOC Frameworks
and one right out microsoft's patterns and practices that I like... Unity
Autofac 具有 模块,它允许您有条件地配置容器中的注册。
模块还允许重复使用相关的注册集。
Autofac has the concept of modules, which allow you to conditionally configure the registrations in the container.
Modules also allow re-use of related sets of registrations.