我正在使用以下排序方法:
public static IEnumerable<TEntity> OrderBy<TEntity>(this IEnumerable<TEntity> source, string orderByProperty,
bool desc)
{
string command = desc ? "OrderByDescending" : "OrderBy";
var type = typeof(TEntity);
var property = type.GetProperty(orderByProperty);
var parameter = Expression.Parameter(type, "p");
var propertyAccess = Expression.MakeMemberAccess(parameter, property);
var orderByExpression = Expression.Lambda(propertyAccess, parameter);
var resultExpression = Expression.Call(typeof(Queryable), command, new Type[] { type, property.PropertyType },
source.AsQueryable().Expression, Expression.Quote(orderByExpression));
return source.AsQueryable().Provider.CreateQuery<TEntity>(resultExpression);
}
我的POCO对象如下:
public class MyEntity
{
.....
[NotMapped]
public virtual int PropertyA
{ get { return something; } }
.....
}
执行时:
context.MyEntities.OrderBy(sort, direction != "ASC").Skip(10).Take(10).ToList();
(请注意,sort是我要排序的字段的名称,在本例中为PropertyA。)
我的问题是OrderBy方法正在引发异常,说明在LINQ to Entities中不允许指定'PropertyA'类型的成员:只允许初始值设定项,实体成员和导航属性。
有什么想法吗?
答案 0 :(得分:3)
您不能在数据库查询中使用[NotMapped]
属性,因为该属性在数据库中不存在。
相反,您可以调用.AsEnumerable()
(在OrderBy
之前)强制查询在客户端上运行。