How can I give specific names to the customers variable's properties, e.g.:
PSEUDO-CODE:
var customers = from c in Customers
where c.Orders.Count > 15
orderby c.Orders.Count ascending
select new {
c.ContactName as Name,
c.City,
c.Orders.Count as NumberOfOrders };