If i have a product.
var p = new Product { Price = 30 };
and i have the following linq query.
var q = repo.Products().Where
And what exactly are you trying to accomplish?
Because to access the value of Price, you'd have to do something like:
Price
var valueOfPrice = q[0].Price;