我的问题来自复杂的可重用逻辑规范。
我有以下Expression
:
Expression<Func<User, bool>> userExp =
user => user.UserInRoles.Any(userInRole => userInRole.RoleId == SystemRoles.SysAdmin.Id);
我需要获得以下能力:
new CommonContext().Set<Estate>().Where(estate => userExp.WithParameter(estate.CreatorUser)).ToList();
那么如何将Creator
Estate
实体传递到接受User
实体的表达式中,最后使用linq to sql
中的最终表达式?
问题是:WithParameter
修改
这个有效,但效率不高:
new CommonContext().Set<Estate>().ToList().Where(estate => userExp.Compile()(estate.CreatorUser)).ToList()
以下不是答案,因为Invoke method
无法转换为商店表达式:
Expression<Func<User, bool>> userExp =
user => user.UserInRoles.Any(userInRole => userInRole.RoleId == SystemRoles.SysAdmin.Id);
Expression<Func<Estate, User>> propAccessor = estate => estate.ApprovedByUser;
var estateParam = Expression.Parameter(typeof(Estate));
var userParam = Expression.Invoke(propAccessor, estateParam);
var translatedExp = Expression.Invoke(userExp, userParam);
var result = (Expression<Func<Estate, bool>>)Expression.Lambda(translatedExp, estateParam);
var exceptionProvider = new CommonContext().Set<Estate>().Where(result).ToList();
但是我需要一些可以翻译成Store Expression
的内容
也许最终的解决方案是分解,然后重新组合表达式,如果是这样,我怎么能封装它以便在类似的情况下重用它? (因为这是我试图做的事情)
答案 0 :(得分:1)
一种替代解决方案可以是首先查询用户并选择所有庄园:
Expression<Func<User, bool>> userExp =
user => user.UserInRoles.Any(userInRole => userInRole.RoleId == SystemRoles.SysAdmin.Id);
new CommonContext().Set<User>().Where(userExp).SelectMany(u => u.Estates).ToList();
答案 1 :(得分:1)
您需要重写表达式。我为WithParameter做了一个扩展方法。
首先,我们需要从这个答案https://stackoverflow.com/a/5431309/1798889借用ParameterVisitor类并稍微调整一下。我们不希望仅使用不同的参数替换一个表达式中的参数,我们要删除该参数并将其替换为新的表达式。
public class ParameterVisitor : ExpressionVisitor
{
private readonly ReadOnlyCollection<ParameterExpression> from;
// Changed from ReadOnlyCollection of ParameterExpression to Expression
private readonly Expression[] to;
public ParameterVisitor(ReadOnlyCollection<ParameterExpression> from, params Expression[] to)
{
if (from == null) throw new ArgumentNullException("from");
if (to == null) throw new ArgumentNullException("to");
if (from.Count != to.Length)
throw new InvalidOperationException(
"Parameter lengths must match");
this.from = from;
this.to = to;
}
protected override Expression VisitParameter(ParameterExpression node)
{
for (int i = 0; i < from.Count; i++)
{
if (node == from[i]) return to[i];
}
return node;
}
}
注意我将To参数更改为表达式而不是ParameterExpression。
现在我们要创建WithParameter
public static class QueryableExtensions
{
public static Expression<Func<TResult, bool>> WithParameter<TResult, TSource>(this Expression<Func<TSource, bool>> source, Expression<Func<TResult, TSource>> selector)
{
// Replace parameter with body of selector
var replaceParameter = new ParameterVisitor(source.Parameters, selector.Body);
// This will be the new body of the expression
var newExpressionBody = replaceParameter.Visit(source.Body);
return Expression.Lambda<Func<TResult, bool>>(newExpressionBody, selector.Parameters);
}
}
在这里我们选择我们如何知道我们想要什么属性并替换Expression&gt;的参数。有这个属性。
你像
一样使用它new CommonContext().Set<Estate>().Where(userExp.WithParameter<Estate, User>(estate => estate.CreatorUser)).ToList();
警告我不知道Linq对SQL并没有对它进行测试,我没有针对IQueryable进行测试,但它确实适用于IEnumberable。我不明白为什么它不起作用,因为最后两个表达式的调试视图看起来是一样的。
Expression<Func<Estate, bool>> estateExp = estate => estate.CreatorUser.UserInRoles.Any(userInRole => userInRole.RoleId == SystemRoles.SysAdmin.Id);
与
是相同的表达式树userExp.WithParameter(estate => estate.CreatorUser)