更新:2007 年 11 月

此示例演示如何以返回值和输出参数的形式从方法中返回查询。

任何查询的类型都必须为 IEnumerableIEnumerable<(Of <(T>)>),或一种派生类型(如 IQueryable<(Of <(T>)>))。因此,返回查询的方法的任何返回值或输出参数也必须具有该类型。如果某个方法将查询具体化为具体的 List<(Of <(T>)>)Array 类型,则认为该方法在返回查询结果(而不是查询本身)。仍然能够编写或修改从方法中返回的查询变量。

有关如何执行传递到方法的查询的示例,请参见对象转储程序示例

示例

在下面的示例中,第一个方法以返回值的形式返回查询,第二个方法以输出参数的形式返回查询。请注意,在这两种情况下,返回的都是查询,而不是查询结果。

C# 复制代码
class MQ
{
    IEnumerable<string> QueryMethod1(ref int[] ints)
    {
        var intsToStrings = from i in ints
                            where i > 4
                            select i.ToString();
        return intsToStrings;
    }

    static void Main()
    {
        MQ app = new MQ();

        int[] nums = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };

        var myQuery = app.QueryMethod1(ref nums);


        //execute myQuery
        foreach (string s in myQuery)
        {
            Console.WriteLine(s);
        }

        //modify myQuery
        myQuery = (from str in myQuery
                   orderby str descending
                   select str).
                  Take(3);

        // Executing myQuery after more
        // composition
        Console.WriteLine("After modification:");
        foreach (string s in myQuery)
        {
            Console.WriteLine(s);
        }

        // Keep console window open in debug mode.
        Console.WriteLine("Press any key to exit.");
        Console.ReadKey();
    }
}

编译代码

  • 创建面向 .NET Framework 3.5 版的 Visual Studio 项目。默认情况下,该项目具有一个对 System.Core.dll 的引用以及一条针对 System.Linq 命名空间的 using 指令。

  • 将代码复制到项目中。

  • 按 F5 编译并运行程序。

  • 按任意键退出控制台窗口。

请参见