var query2 =
from p in db.Products
where p.UnitPrice > 50
select new {
ProductName = p.ProductName.Highlight(),
p.UnitPrice };
