有没有办法在查询中设置一个属性?
var products = from p in Products
let pricecalc = p.IsDiscontinued ? 0 : p.UnitPrice
// somehow set p.Price = pricecalc
select p;
我知道我可以使用 选择新产品 {.. 设置 道具在这里. {\\ / code> 但是我不想这样做 。
目前,我想我必须使用 foreach
来做到这一点。