var northwind = new NorthwindModel.NorthwindEntities();

var italianCustomersObjectQuery =
new ObjectQuery<Customers>(
@"SELECT VALUE Customers FROM " +
@"NorthwindEntities.Customers " +
@"WHERE Customers.Country = 'Italy'",
northwind);
