更新:2007 年 11 月

当下列两个条件都满足时,可在查询表达式中使用匿名类型:

  • 您只想返回每个源元素的某些属性。

  • 您无需在执行查询的方法的范围之外存储查询结果。

如果您只想从每个源元素中返回一个属性或字段,则只需在 select 子句中使用点运算符。例如,若要只返回每个 studentID,可以按如下方式编写 select 子句:

 复制代码
select student.ID;

示例

下面的示例演示如何使用匿名类型只返回每个源元素的符合指定条件的属性子集。

C# 复制代码
private static void QueryByScore()
{
    // Create the query. var is required because
    // the query produces a sequence of anonymous types.
    var queryHighScores =
        from student in students
        where student.ExamScores[0] > 95
        select new { student.FirstName, student.LastName };

    // Execute the query.
    foreach (var obj in queryHighScores)
    {
        // The anonymous type's properties were not named. Therefore 
        // they have the same names as the Student properties.
        Console.WriteLine(obj.FirstName + ", " + obj.LastName);
    }
}
/* Output:
Adams, Terry
Fakhouri, Fadi
Garcia, Cesar
Omelchenko, Svetlana
Zabokritski, Eugene
*/

请注意,如果未指定名称,则匿名类型将使用源元素的名称作为其属性名称。若要为匿名类型中的属性指定新名称,请按如下方式编写 select 语句:

 复制代码
select new { First = student.FirstName, Last = student.LastName };

如果您在上一个示例中这样做,则 Console.WriteLine 语句也必须更改:

 复制代码
Console.WriteLine(student.First + " " + student.Last);

编译代码

  • 若要运行这段代码,请将该类复制并粘贴到已经在 Visual Studio 中创建的 Visual C# 控制台应用程序项目中。默认情况下,此项目针对 .NET Framework 3.5 版,并且将具有一个对 System.Core.dll 的引用和一条针对 System.Linq 的 using 指令。如果项目不满足上面的一个或多个要求,则您可以手动添加它们。有关更多信息,请参见如何:创建 LINQ 项目

请参见