ASP.NET 声明性数据源。如果涉及多个表,是否会使用它们?

发布于 2024-09-25 18:41:46 字数 196 浏览 6 评论 0原文

对于我看到的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神魇的王 2024-10-02 18:41:46

为什么不呢?如果您可以定义单个数据对象,该对象将用作 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文