3层架构参考
我正在寻找有关 ASP.Net 的 3 层架构的参考资料。您能提供一些链接吗?
I am looking for references on 3-tier architecture with ASP.Net. Can you please provide some links?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Csla 框架旨在使用 n 层架构构建您的业务对象。您的对象可以在任何 UI 技术中使用,因为它们完全支持数据绑定,并且数据访问 100% 取决于您,因此 Sql Server 很容易使用,无论是通过直接的 ado.net、EF、Linq 2 Sql 还是 NHibernate。
如果你想要一些除了 Asp.Net、C# 和 Sql 服务器之外的东西,那么你可能找不到它。
http://www.lhotka.net/cslanet
The Csla framework is designed to build your business objects on top of, using n-tier architectures. You objects can be used in any UI technology as they'll fully support databinding, and data access is 100% up to you so Sql Server is easy to use, whether its via straight ado.net, EF, Linq 2 Sql or NHibernate.
If you want something that excludes anything but Asp.Net, C# and Sql server though, well you're probably not going to find it.
http://www.lhotka.net/cslanet
夏普架构是一个非常好的起点。它不仅是一个框架,而且将帮助您学习 n 层开发的基础知识,同时使您的应用程序设计变得简单易懂。
http://www.sharparchitecture.net/
它使用 Castle、NHibernate 和 asp.net mvc。
Sharp Architecture is a very good starting place. Not only is it a framework, but it will help you learn the fundamentals of n-tiered development, while making it easy and comprehendable to design your application.
http://www.sharparchitecture.net/
It uses Castle, NHibernate and asp.net mvc.