using (var northwind = new NorthwindModel.NorthwindEntities()) {
String country = "Germany";

var germanCustomersProjection =
from c in northwind.Customers
where c.Country == country
select new {
c.CustomerID,
c.ContactName,
c.Country,
};

Console.WriteLine(germanCustomersProjection.GetType());

foreach (var c in germanCustomersProjection) {
	Console.WriteLine(c);
}
}
