Question: Which of the following selects an anonymous type?
- select new { a.Country, a.Region }
- select a
- select a.Country, a.Region
- select { a.Country, a.Region }
Answer: The correct answer of the above question is Option A:select new { a.Country, a.Region }