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 }