public override bool Equals(object obj)
 {
     if (!base.Equals(obj))
     {
         return(false);
     }
     Db4objects.Db4o.NativeQueries.Expr.Cmp.Operand.ArrayAccessValue casted = (Db4objects.Db4o.NativeQueries.Expr.Cmp.Operand.ArrayAccessValue
                                                                               )obj;
     return(_index.Equals(casted._index));
 }
Пример #2
0
        public override bool Equals(object obj)
        {
            if (!base.Equals(obj))
            {
                return(false);
            }
            var casted = (ArrayAccessValue
                          )obj;

            return(_index.Equals(casted._index));
        }
Пример #3
0
 public override bool Equals(object obj)
 {
     if (this == obj)
     {
         return(true);
     }
     if (obj == null || obj.GetType() != GetType())
     {
         return(false);
     }
     Db4objects.Db4o.NativeQueries.Expr.Cmp.Operand.ArithmeticExpression casted = (Db4objects.Db4o.NativeQueries.Expr.Cmp.Operand.ArithmeticExpression
                                                                                   )obj;
     return(_left.Equals(casted._left) && _right.Equals(casted._right) && _op.Equals(casted
                                                                                     ._op));
 }
Пример #4
0
 public override bool Equals(object other)
 {
     if (this == other)
     {
         return(true);
     }
     if (other == null || GetType() != other.GetType())
     {
         return(false);
     }
     Db4objects.Db4o.NativeQueries.Expr.ComparisonExpression casted = (Db4objects.Db4o.NativeQueries.Expr.ComparisonExpression
                                                                       )other;
     return(_left.Equals(casted._left) && _right.Equals(casted._right) && _op.Equals(casted
                                                                                     ._op));
 }
Пример #5
0
        public override bool Equals(object obj)
        {
            if (this == obj)
            {
                return(true);
            }
            if (obj == null || obj.GetType() != GetType())
            {
                return(false);
            }
            var casted = (ArithmeticExpression
                          )obj;

            return(_left.Equals(casted._left) && _right.Equals(casted._right) && _op.Equals(casted
                                                                                            ._op));
        }
Пример #6
0
        public override bool Equals(object other)
        {
            if (this == other)
            {
                return(true);
            }
            if (other == null || GetType() != other.GetType())
            {
                return(false);
            }
            var casted = (ComparisonExpression
                          )other;

            return(_left.Equals(casted._left) && _right.Equals(casted._right) && _op.Equals(casted
                                                                                            ._op));
        }