AsQueryable()方法用于获取IQueryable引用。
让我们来看一个查找整数值总和的示例。
首先,设置一个整数数组。
var arr = new int[] { 100, 200, 300, 400 };
现在要找到总和,请使用QueryableSum()
和AsQueryable()
方法。
Queryable.Sum(arr.AsQueryable());
以下是完整的代码。
using System; using System.Linq; class Demo { static void Main() { var arr = new int[] { 100, 200, 300, 400 }; int res = Queryable.Sum(arr.AsQueryable()); Console.WriteLine("Sum: "+res); } }
输出结果
Sum: 1000