var expr =
  from c in customers
  select new {c.Name, c.Country, OrdersCount = c.Orders.Count() };
