I want to change some properties of a LINQ query result object without creating a new object and manually setting every property. Is this possible?
Example:
var list = from something in someList
select x // but change one property
I want to change some properties of a LINQ query result object without creating a new object and manually setting every property. Is this possible?
Example:
var list = from something in someList
select x // but change one property