First of all, IEnumerable is probably a list of something - an object. This is an object that you can expand.
Perhaps you can do something like this:
var ie = db.Query( ... ); var ie2 = ie.Select(i => new MyIe2Object { Prop1 = i.Prop1, NewProp = i.Prop1 + i.Prop2 });
Mikael Östberg
source share