ASP.NET:具有数据访问类和业务对象的 ObjectDataSource
我最近看到了这个视频: 将 ObjectDataSource 与数据访问类和业务对象结合使用。任何人都可以链接到另一个资源来解释如何将 ObjectDataSource 与数据访问类和业务对象一起使用吗?谢谢。
i recently came across this video: Use the ObjectDataSource with a Data Access Class and Business Object. can anybody link to another resource that explains how to work with ObjectDataSource with a Data Access Class and Business Object? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在 ASP.NET 应用程序中经常使用 ObjectDataSource,并且在处理自定义业务对象及其管理器类时它非常方便。
ObjectDataSource(或者更确切地说 VisualStudio)的一大优点是它为您的客户 BO 及其经理提供设计时支持,您所要做的就是使用适当的属性标记您的方法和对象。
您可以按照这些教程来了解有关如何处理 ObjectDataSource 的更多信息。
http://www.asp.net/data-access/tutorials
http://imar.spaanjaars.com /416/building-layered-web-applications-with-microsoft-aspnet-20-part-1
We use ObjectDataSource a lot in our asp.net applications and it comes quite handy when it comes to dealing custom business-objects and their manager classes.
One good thing of the ObjectDataSource (or rather VisualStudio) is that it gives design-time support for your custome B.O.s and their managers, all you have to do is tag your methods and objects with proper attributes.
You can follow these tutorials to learn more about how to deal with ObjectDataSource.
http://www.asp.net/data-access/tutorials
http://imar.spaanjaars.com/416/building-layered-web-applications-with-microsoft-aspnet-20-part-1