Home

No Lamba syntax shown if .ToList() is used

A query like

(from r in Customers where r.City == "London" select r).Dump();

show the lamba syntax of
Customers
   .Where (r => (r.City == "London"))
but nothing is shown for the following query

(from r in Customers where r.City == "London" select r).ToList().Dump();

It's not causing me a problem, but was just wondering why?

Comments

Sign In or Register to comment.