var query =
from s in (from c in db.Customers where c.CompanyName.Length > 10
select new { c.CustomerID, c.CompanyName, c.ContactName, c.City,
				c.Country, c.ContactTitle, c.Address })
where s.Country == "UK"
select new { s.CustomerID, s.CompanyName, s.City };
