I am using LinQPad4 for my first time. I have run one of the LinQ query examples in the program,and when I press the Lambda bottom , the program doesn't show the query transformed into Lambda, can anyone help me please?
var words = from word in "The quick brown fox jumps over the lazy dog".Split()
orderby word.ToUpper()
select word;
var duplicates = from word in words
group word.ToUpper() by word.ToUpper()
into g
where g.Count() > 1
select new { g.Key, Count = g.Count() };
words.Dump();
duplicates.Dump();