I have a collection of objects of one type that I\'d like to convert to a different type. This can be done easily with foreach, but I\'d like to figure out how to use Linq\'s a
I think a call to Select combined with ToList() might be what you need here. For example:
context.Items .Select(item => new DestinationType(item.A, item.B, item.C)) .ToList();