SORU
13 EKİM 2010, ÇARŞAMBA


C# liste.Orderby azalan

Bu sonuç, ama azalan dönüş yapmak istiyorum. Bu mümkün mü?

 var newList = list.OrderBy(x => x.Product.Name).toList();

Yukarıdaki gibi, ama ters.

CEVAP
13 EKİM 2010, ÇARŞAMBA


Emin:

var newList = list.OrderByDescending(x => x.Product.Name).ToList();

Doktor: OrderByDescending(IEnumerable, Func).

Yorum yanıt:

var newList = list.OrderByDescending(x => x.Product.Name)
                  .ThenBy(x => x.Product.Price)
                  .ToList();

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Christian Atlas

    Christian At

    26 Mart 2009
  • hitcreatormusic2

    hitcreatormu

    21 Mayıs 2010
  • thewinekone

    thewinekone

    17 Aralık 2005