var italianCustomersWithOrdersStats =
from c in northwind.Customers
where c.Country == "Italy"
select new {
c.CustomerID,
c.ContactName,
c.CompanyName,
OrdersTotalCount = c.Orders.Count
};
