IHierarchicalDataSource,层次结构,ASP.NET

发布于 2024-07-14 07:07:06 字数 286 浏览 2 评论 0原文

我正在从头开始构建层次结构,并尝试确定最佳路线。 我从另一个 StackOverflow 问题中找到了以下链接:

嵌套集模型

我喜欢这个想法嵌套集并已开始基于此模式构建我的数据库。 我现在不确定如何以能够轻松绑定到控件(例如 TreeView)的方式查询数据。 我还需要能够重新排序并将数据提交回来。 有什么建议么?

I am building a hierarchy structure from scratch and I am trying to determine the best route to take. I found the following link below from another StackOverflow question:

Nested Set Model

I like the idea of nested sets and have begun to build my database, based on this pattern. I am now unsure how to query the data out in such a way that I will easily be able to bind to a control, such as the TreeView. I will need to be able to reorder and commit the data back as well. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

哽咽笑 2024-07-21 07:07:06

SQL 2005 添加了对递归查询的支持。 我使用递归查询返回填充 TreeView 的数据树。 对于每条记录,我从 TreeView 中找到匹配的父节点并添加其新子节点。

对于更新,您可以将树序列化为 XML,然后使用 sql 2005 中的 XML 功能来运行“更新”语句。

SQL 2005 added support for recursive queries. I'm using a recursive query to return a tree of data that populates a TreeView. For each record, I find the matching parent node from the TreeView and add its new child.

For updates you could serialize the tree to XML, then use the XML features in sql 2005 to run an "update" statement.

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