列表自定义排序 C#

发布于 2024-11-06 13:19:58 字数 937 浏览 2 评论 0 原文

我正在尝试以选项卡式布局呈现搜索结果页面(以类别作为选项卡)。如何确保 Tab 键顺序为“产品”、“文章”和“视频”?现在它总是按字母顺序打印(因为我想是 orderby 方法)。我对创建自定义排序/比较很陌生。谢谢你!

protected void ResultsRedendering(List<Item> searchResult)
    {
        _searchResults = searchResult.GroupBy(i => i.TemplateName).OrderBy(p=>p.Key).ToList();
        _searchResults.RemoveAll(i => i.Key != "Product" && i.Key != "Article" && i.Key != "Video");
        rptResultTab.DataSource = _searchResults;
        rptResultTab.DataBind();
    }

这就是我的项目模板呈现每个选项卡的方式...

<ItemTemplate>
            <li><a href="#<%#((IGrouping<string , Item>)Container.DataItem).Key %>">
                <%#((IGrouping<string, Item>)Container.DataItem).Key)%></a></li>
</ItemTemplate>

此外,_searchResult 的类型为 List>

I am trying to render a search results page in tabbed layout (with categories as tabs). How can I make sure the tab order to be Products, Articles and Videos? Right now it always prints alphabetical (coz of orderby method I suppose). I am quite new to creating custom sorts/comparison. Thank you!

protected void ResultsRedendering(List<Item> searchResult)
    {
        _searchResults = searchResult.GroupBy(i => i.TemplateName).OrderBy(p=>p.Key).ToList();
        _searchResults.RemoveAll(i => i.Key != "Product" && i.Key != "Article" && i.Key != "Video");
        rptResultTab.DataSource = _searchResults;
        rptResultTab.DataBind();
    }

This is how my item template renders each tab...

<ItemTemplate>
            <li><a href="#<%#((IGrouping<string , Item>)Container.DataItem).Key %>">
                <%#((IGrouping<string, Item>)Container.DataItem).Key)%></a></li>
</ItemTemplate>

Also, _searchResult is of type List<IGrouping<string,Item>>

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

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

发布评论

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

评论(2

蓝颜夕 2024-11-13 13:19:58

虽然可能不是 100% 最佳,但这应该可行。

 protected void ResultsRedendering(List<Item> searchResult)
            {
                var _searchResults = searchResult
                 .OrderBy(o => o.Key == "Product" ? 1 : o.Key== "Article" ? 2 : 3});
                var rptResultTab.DataSource = _searchResults;
                rptResultTab.DataBind();
            }

while maybe not 100% optimal this should work.

 protected void ResultsRedendering(List<Item> searchResult)
            {
                var _searchResults = searchResult
                 .OrderBy(o => o.Key == "Product" ? 1 : o.Key== "Article" ? 2 : 3});
                var rptResultTab.DataSource = _searchResults;
                rptResultTab.DataBind();
            }
画尸师 2024-11-13 13:19:58

您可以制作单独的类别列表,以使它们更容易使用:

var products = searchResult.Where(sr => sr.Key == "Product");
var articles = searchResult.Where(sr => sr.Key == "Article");
var videos = searchResult.Where(sr => sr.Key == "Video");

我不清楚您是如何准确设置数据绑定的,所以这就是我现在真正可以推荐的。如果您添加更多信息,我可能可以提供更多帮助。

You can make separate lists of the categories to make them a little easier to work with:

var products = searchResult.Where(sr => sr.Key == "Product");
var articles = searchResult.Where(sr => sr.Key == "Article");
var videos = searchResult.Where(sr => sr.Key == "Video");

It's unclear to me how you have your DataBinding setup exactly, so this is all I can really recommend right now. If you add some more information I might be able to help further.

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