using (NorthwindEntities db = new NorthwindEntities()) {

var customers = db.CreateQuery<Customers>(
"SELECT VALUE c FROM NorthwindEntities.Customers AS c " +
"WHERE c.Country = @Country");

customers.Parameters.Add(new ObjectParameter("Country", country));
foreach (Customers c in customers) {
	Console.WriteLine(c.Display());
}
}
