我遇到了一个奇怪的问题,我正在编写一个小方法来使用 System.Linq.Dynamic 类来查询对象列表,尽管我认为我的问题不在于动态命名空间。由于某种原因,无法找到 GroupBy 和 OrderByDescending。我已经引用了 System.Linq,这是我最初认为会导致这种情况的原因……奇怪的是,它正在寻找 OrderBy 和其他 Linq 方法……我的代码如下。
using System;
using System.Collections.Generic;
using System.Linq.Dynamic;
using System.Linq;
using System.Web;
namespace MvcTemplate.jrSite.Core
{
public static class DynamicQuery
{
public static IQueryable Query(IQueryable items, string where, string select, string groupby, string orderby, string orderbydesc, int take)
{
var ret = items;
if (where != null && where.Length != 0)
{
ret = ret.Where(where);
}
if (select != null && select.Length != 0)
{
ret = ret.Select(select);
}
if (groupby != null && groupby.Length != 0)
{
ret = ret.GroupBy(groupby);
}
if (orderby != null && orderby.Length != 0)
{
ret = ret.OrderBy(orderby);
}
if (orderbydesc != null && orderbydesc.Length != 0)
{
ret = ret.OrderByDescending(orderbydesc);
}
return ret;
}
}
}