var expr =
  (from c in customers
  where c.Country == Countries.Italy
  orderby c.Name descending, c.City
  select new { c.Name, c.City }
  ).Reverse();
