クエリの途中でプロパティを設定する方法はありますか?
var products = from p in Products
let pricecalc = p.IsDiscontinued ? 0 : p.UnitPrice
// somehow set p.Price = pricecalc
select p;
私は使用できることを知っ select new Product { .. set props here .. }
ていますが、これをしたくありません。
At the moment, i am thinking i am going to have to use a foreach
to do this.