是否可以在 C# 的 LINQ 扩展方法中创建匿名类型?
例如 LINQ query.ie
var CAquery = from temp in CAtemp
join casect in CAdb.sectors
on temp.sector_code equals casect.sector_code
select new
{
//anonymous types
CUSIP = temp.equity_cusip,
CompName = temp.company_name,
Exchange = temp.primary_exchange
};
C# 中的 LINQ 扩展方法是否支持相同的行为?