var query4 =
from a in (
from p in db.Products
where p.UnitPrice > 50
select new {
ProductName = "** " + p.ProductName + " **",
p.UnitPrice
}
)
select new {
ProductName = a.ProductName.ToLower(),
a.UnitPrice
};
