I am learning Linq. Most Linq examples are available in query expression format. To better understand this, I would like to know what the query expression looks like in dotted notation or lambda syntax. Although I can translate simple point expressions into point format, I am in a desire when expressions become complex.
Are there any general rules for this conversion manually?
Also is there a tool that can do such a conversion for me from a query expression to a dot format and vice versa? The C # compiler preprocesses the query expression in dot format before compiling. If there is no such tool, is there a way to view the pre-processed code before compiling it?
source
share