2

我对 Expressions 仍然有点陌生,并且很难解决这个问题。这可能更像是 EF 上的 Lambda 表达式问题,但我希望有人能至少指出我正确的方向:

我正在尝试执行以下操作:

internal static IQueryable<TSource> WithSecurity<TSource>(thisIQueryable<TSource> source, Expression<Func<Security.Access, TSource, bool>> predicate, params MyRoles[] roles)
{

    DL.MyContext ctx = Csla.Data.DbContextManager<DL.MyContext>.GetManager().DbContext;

    var accessData = ctx.Access.Where(e => roles.Contains((MyRoles)e.Role_ID));

    Expression x = predicate asLambdaExpression;

    source =
        from c in source
        where accessData.Any(predicate)
        select c;

    return source;
}

在 where 子句中,显然存在一个问题,因为谓词是 type Expression<Func<Security.Access, TSource, bool>>,但 Any 是 expecting Expression<Func<Security.Access, bool>>。任何有关如何转换的帮助将不胜感激。

4

1 回答 1

0

我认为您正在寻找的是 Compile 方法:

var compiledPredicate = predicate.Compile();
source = 
    from c in source 
    where accessData.Any(ad => compiledPredicate(ad, c)) 
    select c; 

请注意,编译是一个有点昂贵的操作,因此如果在典型场景中使用相同的表达式频繁调用此方法,请考虑缓存来自 Compile() 的结果。

于 2012-09-20T20:30:02.077 回答