I have class that works a bit like the Linq To Sql Where clause.
It builds a sequence of operations from an Expression tree.
The expression tree is an Expression<Func<bool>> (i.e. a lambda without arguments that returns a bool)
conditionBuilder.BuildCondition(() => x != 3 && y != 5);
The class works fine for normal expressions like the example above but now I need the functionality to combine expressions.
I have added And, Or methods like
var exp1 = () => x != 3;
var exp2 = () => y != 5;
var exp = ConditionBuilder.And(exp1, exp2);
but it gets complicated when combining several expressions.
I would like to write
var exp = exp1 && exp2;
but since I can't directly overload operator && I need to find some other solution.
The tricky part is that resulting operations does not have a boolean overload for the bitwise operators. i.e. the result of exp1 & exp2 is int and not bool. (I can get around this by adding != 0)
So my questions now are:
- Will it be confusing if I let operator & be a logical expression (i.e. AndAlso)?
- operator && will work if I overload & / true / false but that will also create an implicit boolean conversion. I know implicit boolean conversion is something you want to avoid in C++ but I am not sure how it matters i C#. Also, should the overridden true and false evaulate the expression? (i.e. what should
if (exp1)do?)
Edit: I already have working code like this:
public class ConditionBuilder
{
private readonly Expression<Func<bool>> _filter;
public ConditionBuilder(Expression<Func<bool>> filter) {
_filter = filter;
}
public static ConditionBuilder And(ConditionBuilder left, ConditionBuilder right) {
return new ConditionBuilder(Expression.Lambda<Func<bool>>(Expression.AndAlso(left._filter.Body, right._filter.Body)));
}
public static ConditionBuilder Or(ConditionBuilder left, ConditionBuilder right) {
return new ConditionBuilder(Expression.Lambda<Func<bool>>(Expression.OrElse(left._filter.Body, right._filter.Body)));
}
}
Edit 2 to clarify the questions.
The expressions are converted into another format. An example is that () => ConditionBuilder.IntField(123) == 5 is converted into @123 EQ 5 (The real format is something else but you get the idea)
The problem is that the other format doesn't have a booleen overload for the bitwise operators. This means that () => true & false is converted into True BITAND False which is not a valid expression since it returns an int and not a boolean.
If I overload & to mean AndAlso
exp1 & exp2
is a valid expression but
() => x != 3 & y != 5
is not.
My second question was if having an implicit conversion to bool causes problems in C# like it does in C++.
And,Oretc, I'd be wary of choosing operator overloading instead, for the same sort of functionality. You say "it gets complicated when combining several expressions", but the operator overloaded equivalent, while more concise at point of consumption, is surely going to be harder to create and debug, isn't it? – AakashM Nov 23 '11 at 16:12