实体框架动态Where子句

时间:2009-02-10 19:00:04

标签: c# entity-framework generics

我有一个类似的查询:

var function = GetSomeExpression();    

using (FooModel context = new FooModel())
{
    var bar = context.Bar.Where(function);
}

我想创建一个可以在上下文中针对不同实体执行Where的泛型方法。目标不是必须做context.Bar.Where,context.Car.Where,Context.Far.Where等。

无法完成的事情,但说明目标是:

var q = context.GetObjectContext(T).Where(queryFunction);

我已经研究过使用Relfection并且可以获取Where方法,但是不知道如何针对在委托中传递的上下文执行它。我也看过DynamicMethod,但做整个IL事情并不喜欢吸引人。

到目前为止我所拥有的:

private List<T> GetResults<T>(Expression<Func<T, bool>> queryFunction)
{
    // note: first() is for prototype, should compare param type
    MethodInfo whereMethod = typeof(Queryable).GetMethods()
        .Where(m => m.Name == "Where")
        .First().MakeGenericMethod(typeof(T)); 

    // invoke the method and return the results
    List<T> result = whereMethod.Invoke(
    // have the method info
    // have the expression
    // can reference the context 
    );

    throw new NotImplementedException();
}

这可能吗?

2 个答案:

答案 0 :(得分:7)

这比我之前尝试的方式更容易:

private List<T> GetResults<T>(IQueryable<T> source, 
    Expression<Func<T, bool>> queryFunction)
{
   return source.Where(queryFunction).ToList<T>();
}

答案 1 :(得分:1)

看这篇文章

LINQ to entities - Building where clauses to test collections within a many to many relationship

修改:在您的帖子更新后,这似乎不再相关;我会留下它以防它有用。