Sorting a table in asp.net MVC

前端 未结 5 1264
半阙折子戏
半阙折子戏 2021-02-07 08:36

I was wondering how people were going about sorting a table in asp.net mvc? I\'ve heard of javascript solutions that work pretty well with non-paged tables, such as jquery\'s ta

5条回答
  •  遥遥无期
    2021-02-07 09:03

    I prefer the methods described here: http://www.c-sharpcorner.com/UploadFile/camurphy/csharpLists03302006170209PM/csharpLists.aspx

    So for ex:

    var products = new List();
    products = ProductRepository.GetAll();
    
    // Sort Results
    products.Sort(
        delegate(Products p1, Products p2) {
        return p1.Name.CompareTo(p2.Name);
    });
    

提交回复
热议问题