3
listOrders.DataSource = (from sp in dbdata.Specifications
                         join ord in dbdata.Orders on sp.O_id equals ord.O_id
                         join prd in dbdata.Products on ord.O_id equals prd.O_ID
                         where sp.Approve == "Yes" && 
                         sp.Awailable_BOM == "Yes" && 
                         prd.Hours_prd == null
                         orderby sp.O_id descending
                         select sp.O_id).Distinct();

in here I am tring to get desceding values. But it always gets ascending values. if I remove "Distinct()" it works properly but after adding "Distinct()" this problem occurs.

Marc
  • 14,654
  • 20
  • 69
  • 112
Muditha
  • 147
  • 4
  • 12

1 Answers1

1

Try this:

listOrders.DataSource = (from sp in dbdata.Specifications
                         join ord in dbdata.Orders on sp.O_id equals ord.O_id
                         join prd in dbdata.Products on ord.O_id equals prd.O_ID
                         where sp.Approve == "Yes" && 
                         sp.Awailable_BOM == "Yes" && 
                         prd.Hours_prd == null
                         select sp.O_id).Distinct().OrderByDescending();
tallseth
  • 3,547
  • 1
  • 20
  • 24