3

我正在使用以下代码将分页数据源绑定到转发器控件

  protected void Paging()
    {
        Array q = (Array)Session["q"];
        PagedDataSource objPds = new PagedDataSource();
        objPds.DataSource = q;
        objPds.AllowPaging = true;
        objPds.PageSize = Convert.ToInt32(ddlPageNo.SelectedValue);

        objPds.CurrentPageIndex = CurrentPage;

        lblCurrentPage.Text = "Page: " + (CurrentPage + 1).ToString() + " of "
           + objPds.PageCount.ToString();

        // Disable Prev or Next buttons if necessary
        cmdPrev.Enabled = !objPds.IsFirstPage;
        cmdNext.Enabled = !objPds.IsLastPage;

        rptHotels.DataSource = objPds;
        rptHotels.DataBind();

    }

q在哪里

 getAvailableHotelResponse getres = new getAvailableHotelResponse();    
  getres = objsoap.getAvailableHotel(apiKey, destinationId, checkIn, checkOut, strCurrencyCode, "UK", false, rooms, f);   
            List<hotel> hr = new List<hotel>();
            hr = getres.availableHotels.ToList();

            List<BALHotelList> bh = new List<BALHotelList>();
            bh = h.GetHotelListByDestinationId(destinationId);
     var q = from a in bh
                    join b in hr on a.HotelCode equals b.hotelCode
                    orderby a.HotelName
                    select new
            {
                a.HotelCode,
                a.ImageURL_Text,
                a.HotelName,
                a.StarRating,
                a.HotelAddress,
                a.Destination,
                a.Country,
                a.HotelInfo,
                a.Latitude,
                a.Longitude,
                b.totalPrice,
                b.totalPriceSpecified,
                b.totalSalePrice,
                b.totalSalePriceSpecified,
                b.rooms

            };


            //rptHotels.DataSource = getres.availableHotels;

            Session["q"] = q.ToArray();

现在我想用

想要通过hotelnameor对数组 q 进行排序starRating

我没有找到任何类似的方法

q.sort(); 

或者

q.orderBy(q->hotelName)
4

3 回答 3

2

对于成员对现有数组的就地排序:

Array.Sort(theArray, (x,y) => string.Compare(x.HotelName, y.HotelName));
于 2012-07-27T18:51:35.010 回答
2

使用以下..

q.OrderBy(x => x.HotelName);

更新

从会话中回退,这样做

//if you have concrete type instead of object, use that type

var t = (IEnumerable<object>)Session["q"];

更新 2

您的投影应该是具体类型(即创建一个新的 Hotel 类来表示您的投影),否则您将无法对投影的某些属性执行 OrderBy

于 2012-07-27T18:52:40.607 回答
1

qfor you 是Array类的一个实例,而不是某种类型的数组(即int[], string[], object[])。 Arrayonly implements IEnumerable,而不是IEnumerable<T>Linq 方法不存在。这里的根本问题是它是一个匿名类型的数组,因此除了使用非常混乱的解决方法之外,您无法有效地获取强类型数组。

此时最好的解决方案是创建一个新类来保存您的数据(即Hotel),而不是将其放入匿名类型中。当您填充会话时,创建该类型的新实例 ( Hotel),然后当您将其从会话中拉出时,将其转换为该类型的数组 ( Hotel[]),而不是泛型Array。此时,您将能够在对象上使用 Linq 方法。

于 2012-07-27T19:29:17.193 回答