Example #1
0
 protected IFCommand UpdateIf(IFCommand ifx, Expression check, Expression ifTrue, Expression ifFalse)
 {
     if (check != ifx.Check || ifTrue != ifx.IfTrue || ifFalse != ifx.IfFalse)
     {
         return(new IFCommand(check, ifTrue, ifFalse));
     }
     return(ifx);
 }
Example #2
0
        protected virtual Expression VisitIf(IFCommand ifx)
        {
            var check   = Visit(ifx.Check);
            var ifTrue  = Visit(ifx.IfTrue);
            var ifFalse = Visit(ifx.IfFalse);

            return(UpdateIf(ifx, check, ifTrue, ifFalse));
        }
Example #3
0
        protected override Expression VisitIf(IFCommand ifx)
        {
            var test =
                Expression.Condition(
                    ifx.Check,
                    ifx.IfTrue,
                    ifx.IfFalse != null
                        ? ifx.IfFalse
                        : ifx.IfTrue.Type == typeof(int)
                            ? (Expression)Expression.Property(this.executor, "RowsAffected")
                            : (Expression)Expression.Constant(TypeHelper.GetDefault(ifx.IfTrue.Type), ifx.IfTrue.Type)
                    );

            return(this.Visit(test));
        }
Example #4
0
 protected override Expression VisitIf(IFCommand ifx)
 {
     throw new NotSupportedException();
 }
 protected virtual bool CompareIf(IFCommand x, IFCommand y)
 {
     return(this.Compare(x.Check, y.Check) && this.Compare(x.IfTrue, y.IfTrue) && this.Compare(x.IfFalse, y.IfFalse));
 }