如何使用动态数据/LINQTOSQL框架创建面包屑?
我需要一些关于如何创建动态面包屑控件的示例或想法,该控件将为由 LINQTOSQL 提供支持的动态日期框架动态生成面包屑
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要一些关于如何创建动态面包屑控件的示例或想法,该控件将为由 LINQTOSQL 提供支持的动态日期框架动态生成面包屑
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可能需要三样东西:
* 当我想要为客户端站点提供类似的东西时,我进行了一些搜索,并决定将路径结构存储在数据库中将是最简单的 - 我已经给出了 之前的答案用于任意深度站点地图 - 请注意,如果您使用的是 SQL2008,可以使用新的 HierarchyId 数据类型来简化此操作。
话虽如此,如果您有类别和产品之类的内容,您可能可以在数据库中使用更简单的系统。
我需要创建来解决这个问题的关键函数如下:
GetSiteMap
和GetSiteMapChildrenByPath
调用存储过程来构建层次结构,因为使用 LINQ 将其拉出将非常容易复杂的。You'll probably need three things:
* I'd done some hunting around when I wanted something similar for a client site, and decided that storing the path structure in the database would be simplest - I've given the answer previously here for an arbitrary depth site map - note that if you're using SQL2008 you can use the new HierarchyId data type to make this a bit easier.
That being said, if you've got things like categories and products, you can probably get away with a simpler system in your database.
The key functions I needed to create to resolve this were things like:
GetSiteMap
andGetSiteMapChildrenByPath
call into stored procs to build the hierarchy as pulling it out with LINQ was going to be quite complex.您好,您看过我的自定义 SitMapProvider 这里
这允许您从带有注释的元模型中获取结构以及非 DD 页面的单独站点地图文件。
Hi have you had a look at my custom SitMapProvider here
This allows you to get the structure from the metamodel with annotation and a seperate sitemap file for non DD pages.