Let's 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 () on Linqpad shows the following in the results pane:

Is there a way to rename the set header to say "clients" instead of "List <> (5 items)"?
source
share