可能重复:
LINQ to Entities 无法识别该方法
我使用实体框架 4.3
我写扩展方法:
public static IQueryable<TSource> Active<TSource>(this IQueryable<TSource> source) where TSource : class, IStatusable
{
return source.Where(s => s.Status == (int)StatusEnum.Enabled);
}
这很好用:
var cat=Context.Categories.Active().ToList()
但我需要在 Select 中使用这个扩展方法。看简化查询:
return Context.Categories
.Select(c => new { Children=c.Children.AsQueryable().Active()})
.ToList()
(儿童 - 子类别的集合)查询执行时我收到一条错误消息:
LINQ to Entities does not recognize the method 'System.Linq.IQueryable`1[Portal.FrontOffice.Model.Category] Active[Category](System.Linq.IQueryable`1[Portal.FrontOffice.Model.Category])' method, and this method cannot be translated into a store expression.
为什么不工作?如何正确书写?