I have this LINQ query and want to add a second orderby.
var clients = from c in context.clients
orderby c.clientname
select new { c, orders = c.orders};
So after this i have an alfabetical list of clients with unorderd ORDERS.
I also want to OrderBy on ORDERS.ORDERNUMBER
If possible I want to do all of this in one query.
How to?
Please
I suspect you want: