ASP.NET 声明性数据源。如果涉及多个表,是否会使用它们?
对于我看到的 SqlDataSource、LinqDataSource 的典型示例...
每个示例都涉及如何对 Gridview/RADgrid 直接代表客户的 Customer 表进行更改。
但就我而言,我有存储过程,它显示来自多个表的数据,并且对多个表进行更改,因此我似乎不适合使用声明性数据源?
或者有人可以给我举个例子吗?
For typical examples I see of SqlDataSource, LinqDataSource...
EVERY example deal with how to make changes to a Customer table where the Gridview/RADgrid directly represents the customer..
But in my case I have stored procedure which show data from multiple tables and make changes to multiple tables so it seems I am not a candidate for uses declarative data sources?
Or can anyone point me to an example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不呢?如果您可以定义单个数据对象,该对象将用作 GetCustomer 过程的结果并输入到 StoreCustomer 过程,您可以将调用这些过程包装到某个类中并使用 ObjectDataSource。您的 ASP.NET 应用程序不必了解数据库中 Customer 的内部存储。唯一的要求是拥有平面对象 = 没有 1:N 或 M:N 相关数据。
Why not? If you can define single data object which will be used as result from GetCustomer procedure and input to StoreCustomer procedure you can wrap calling these procedures into some class and use ObjectDataSource. Your ASP.NET application doesn't have to know nothing about internal storing of Customer in database. The only requirement is to have flat object = no 1:N or M:N related data.