using (var northwind = new NorthwindModel.NorthwindEntities()) {
var italianCustomers =
from c in northwind.Customers.Include("Orders")
where c.Country == "Italy"
select c;

// ...
}
