public Expression Or(Expression other)
 {
     return new LogicOperatorOr(this, other);
 }
 public Expression And(Expression other)
 {
     return new LogicOperatorAnd(this, other);
 }