Exemple #1
0
 public BinaryOperatorNode(BinaryOperatorKind kind, QueryNode left = null, QueryNode right = null)
 {
     OperatorKind = kind;
     LeftOperand  = left;
     RightOperand = right;
 }
 public ConvertNode(QueryNode source, Type targetType)
 {
     Source     = source;
     TargetType = targetType;
 }
 public UnaryOperatorNode(UnaryOperatorKind kind, QueryNode operand)
 {
     OperatorKind = kind;
     Operand      = operand;
 }