InterviewSolution
Saved Bookmarks
| 1. |
What is expression trees in LINQ? |
|
Answer» In LINQ, an Expression TREE is nothing but EXPRESSIONS SYSTEMATICALLY organized in a tree-like DATA structure. Here, each node in an expression tree relates to expression. This is just like an in-memory representation of a lambda expression in which only the actual ELEMENTS of the query are held and not the result of the query. |
|