String country = "Italy";

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