Say I make the following query expression:
var clients =
(from c in Clients
where (c.Age == 20)
select new { c.FirstName, c.LastName }
).ToList();
Calling clients.Dump() in Linqpad shows the following in the Results Panel:
Is there a way to rename the set's header, to let's say 'clients', instead of 'List<> (5 items)'?