var northwind = new NorthwindModel.NorthwindEntities();

var italianCustomerWithAtLeastTenOrders =
from c in northwind.Customers
where c.Country == "Italy"
	&& c.Orders.Count >= 10
select c;
