var query1 =
from p in db.Products
where p.UnitPrice > 50
select new {
ProductName = "** " + p.ProductName + " **",
p.UnitPrice };
