var northwind = new NorthwindModel.NorthwindEntities();

var italianCustomers =
from c in northwind.Customers
where c.Country == "Italy"
select c;
