无法根据用法推断OrderBy类型的问题
本文关键字:OrderBy 类型 问题 用法 | 更新日期: 2023-09-27 18:04:06
我正在学习一门关于在.net中构建API的复数视觉课程,我似乎遇到了所提供代码的问题。我有一个类,它应该根据提供的查询参数对给定的集合进行排序。这是代码:
public static class IQueryableExtensions
{
public static IQueryable<T> ApplySort<T>(this IQueryable<T> source, string sort)
{
if (source == null)
{
throw new ArgumentNullException("source");
}
if (sort == null)
{
return source;
}
// split the sort string
var lstSort = sort.Split(',');
// run through the sorting options and create a sort expression string from them
string completeSortExpression = "";
foreach (var sortOption in lstSort)
{
// if the sort option starts with "-", we order
// descending, otherwise ascending
if (sortOption.StartsWith("-"))
{
completeSortExpression = completeSortExpression + sortOption.Remove(0, 1) + " descending,";
}
else
{
completeSortExpression = completeSortExpression + sortOption + ",";
}
}
if (!string.IsNullOrWhiteSpace(completeSortExpression))
{
source = source.OrderBy(completeSortExpression.Remove(completeSortExpression.Count() - 1));
}
return source;
}
}
问题出在线路上:
source = source.OrderBy(completeSortExpression.Remove(completeSortExpression.Count() - 1));
由于某种原因,OrderBy
抛出错误:the type for method OrderBy cannot be inferred from the usage. Try specifying the type arguments explicitly.
您似乎在使用动态Linq,它允许您使用字符串来代替lambda表达式。在这种情况下,您可能缺少一个using
语句,因此编译器正试图找出如何将字符串转换为lambda。尝试添加这个(注意,这可能不太正确,因为我没有在这里安装动态linq(:
using System.Linq.Dynamic;