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