What do you understand by Expression Tree?

devquora
devquora

Posted On: Feb 22, 2018

 

Lambda expressions are widely used in the Expression tree which gives away code in a data structure which resembles a tree. Every node in the tree is itself an expression like a method call or binary operation. Statement lambdas which are two or three statements don’t help in the construction of expression trees.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    LINQ Interview Questions

    What do you understand by LINQ?

    Language Integrated Query is the collection of standard query operators which adds query facilities into .NET framework..

    LINQ Interview Questions

    What are the three main components of LINQ?

    The three main components of LINQ are:Standard Query Operators: These are the extension methods that form the LINQ p..

    LINQ Interview Questions

    Explain what is select clause and where clause in LINQ?

    Select clause: the select clause selects the interesting aspects of the element by performing a projection on the col..