if you are debugging this, then you will probably see each column in the table productsin SELECT ...the query part
if you did select p.UnitsInStock, you will only see the SELECT ...query part .
, , , , , , , :
var expensiveInStockProducts =
from p in products
where p.UnitsInStock > 0 && p.UnitPrice > 3.00M
select new { p.UnitsInStock, p.SomeOtherColumn }