I was hoping some of you guru's out there know the answer to this question. Which is faster? A or B
A:
var item = from d in database
select d;
B:
var item = from d in database
select new {d.item1, d.item2};
SEEMINGLY, it seems like selecting part of the table object would be faster than selecting the entire object, but something tells me its not necessarily the case.