我知道类似的问题已经被问过很多次,但他们通常要求 LINQ to Entities 支持它不支持的功能,或者提供的解决方案不是我想要的。
我有一个简单的查询,我想将它封装在一个扩展方法中,以便它可以在任何地方使用:
public static Episode Latest(this ICollection<Episode> EpisodesSet)
{
return EpisodesSet.OrderByDescending(e => e.AiredDate).FirstOrDefault();
}
这会产生带有错误的 NotSupportedException:
LINQ to Entities 无法识别方法 '[namespace/type/method here]' 方法,并且此方法无法转换为存储表达式
因此,“简单查询”是指OrderByDescending(expression).FirstOrDefault()
LINQ to Entities 支持/可翻译。另外,我知道我可以编写一个返回表达式的函数并执行类似的操作episode = Episodes.Where(Latest())
,但这似乎不是很“可发现”,也不是我正在寻找的解决方案。
我想知道是否有办法重写我的扩展方法,以便当我尝试使用这样的扩展方法时 LINQ to Entities 不会抛出 NotSupportedException:
var query = from show in context.Shows
select new {show.Title, show.Epsiodes.Latest()};