Hi,
I need to use order by in dlinq queries like
select * from orders order by orderName desc
what is the equivalent for this in dlinq
regards,
sachin
In c# you can use the 'orderby' clause.
from o in db.Orders
orderby o.OrderName descending
select o
Microsoft is conducting an online survey to understand your opinion of the Msdn Web site. If you choose to participate, the online survey will be presented to you when you leave the Msdn Web site.
Would you like to participate?