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

var germanCustomers =
(from c in northwind.Customers
where c.Country == country
select c).Take(4);

northwind.Connection.Open();
Console.WriteLine(
((ObjectQuery<Customers>)secondQueryForGermanCustomers)
.ToTraceString());

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