用于数据访问的 ASP.NET 提供程序模型
刚刚引入 ASP.NET 提供程序模型作为一种潜在的数据访问技术。 我自己的想法是使用 LINQ 存储库,但希望保持开放的态度。
有什么想法吗?
谢谢
Just been introduced to the ASP.NET Provider Model as a potential data-access technology. My own idea is to use LINQ repositories, but want to keep an open mind.
Any thoughts?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 是 .NET 的 Web 框架,与数据访问无关。
它确实将提供者模型用于许多功能,包括成员资格。 也许您将其与数据访问混淆了?
如果您有兴趣使用提供程序模型在编译后使用不同的实现来切换存储库,则需要查看依赖注入/控制反转框架,例如 MS 的 Unity。
ASP.NET is the web framework for .NET, and has nothing to do with data access.
It does use the provider model for many functions, including membership. Perhaps you're mixing this up with data access?
If you're interested in using the provider model for switching out your repository after compile time with different implementations, you need to look at Dependency Injection/Inversion of Control frameworks such as MS' Unity.