MongoDB 表达式 System.InvalidOperationException:“不支持。”

MongoDB Expression System.InvalidOperationException: ' is not supported.'

我正在尝试将 2 个查询过滤器与 mongodb 驱动程序组合,但框架 returns 只是 "System.InvalidOperationException: 'x.MyBool2 is not supported.'"

以下所有表达式都成功,但最后一个表达式除外,我在其中尝试执行组合查询。

我做错了什么?

public async Task GetTest()
{
    Expression<Func<PostDto, bool>> filter = x => x.MyBool1 == true;
    Expression<Func<PostDto, bool>> filter1 = x => x.MyBool2 == true;
    Expression<Func<PostDto, bool>> filter2 = x => x.MyBool1 && x.MyBool2;

    var andAlsoExpression = Expression.AndAlso(filter.Body, filter1.Body);
    var combinedFilter = Expression.Lambda<Func<PostDto, bool>>(andAlsoExpression, filter.Parameters);

    var result = await Collection.AsQueryable().Where(filter).ToListAsync();
    var result1 = await Collection.AsQueryable().Where(filter1).ToListAsync();
    var result2 = await Collection.AsQueryable().Where(filter2).ToListAsync();

    var result3 = await Collection.AsQueryable().Where(x => x.MyBool1 && x.MyBool2).ToListAsync();

    var result4 = await Collection.AsQueryable().Where(combinedFilter).ToListAsync();

    Debugger.Break();
}

Marc Gravell 的 AndAlso 扩展帮助了我:

static Expression<Func<T, bool>> AndAlso<T>(
    this Expression<Func<T, bool>> expr1,
    Expression<Func<T, bool>> expr2)
{
    // need to detect whether they use the same
    // parameter instance; if not, they need fixing
    ParameterExpression param = expr1.Parameters[0];
    if (ReferenceEquals(param, expr2.Parameters[0]))
    {
        // simple version
        return Expression.Lambda<Func<T, bool>>(
            Expression.AndAlso(expr1.Body, expr2.Body), param);
    }
    // otherwise, keep expr1 "as is" and invoke expr2
    return Expression.Lambda<Func<T, bool>>(
        Expression.AndAlso(
            expr1.Body,
            Expression.Invoke(expr2, param)), param);
}

来源:Combining two expressions (Expression<Func<T, bool>>)

使用这个扩展,而不是我的 AndAlso&Expression.Lambda 部分解决了问题。