Func を使用してプロパティ Id を選択し、それを ID のリストと比較するエンティティ拡張メソッドへの linq を作成しようとしています。
クラス
public class A
{
public int AId { get; set; }
}
public class B
{
public int BId { get; set; }
}
延長方法
public static IQueryable<T> WithId<T>(this IQueryable<T> entities,
Func<T, int> selector, IList<int> ids)
{
Expression<Func<T, bool>> expression = x => ids.Contains(selector(x));
return entities.Where(expression); // error here (when evaluated)
}
呼び出し方法
var ids = new List<int> { 1, 2, 3 };
DbContext.EntityAs.WithId(e => e.AId, ids);
DbContext.EntityBs.WithId(e => e.BId, ids);
私が経験している問題は、Entity Framework で許可されていない関数を呼び出そうとしていることです。
プロパティ セレクター (Func) を使用してクエリを評価するにはどうすればよいですか?