LINQ expressions used to shape results in query - LINQ
Q. What LINQ expressions are used to shape results in a query?
1. where
2. select
3. join
4. group
- Published on 31 Aug 15a. 2, 4
b. 1, 2
c. 3, 4
d. None
ANSWER: 2, 4
When the linq query is executed, the select clause specifies the type of values that will be produced.
By using group clause you can group your results based on a key that you specify.