Ejemplo n.º 1
0
        public object[] GetBindedVars()
        {
            if (_alias != null && _value != null)
            {
                return(_value.GetBindedVars());
            }

            return(new object[] {});
        }
Ejemplo n.º 2
0
        public object[] GetBindedVars()
        {
            var list = new List <object>();

            list.AddRange(_condition.GetBindedVars());
            list.AddRange(_positive.GetBindedVars());
            list.AddRange(_negative.GetBindedVars());

            return(list.ToArray());
        }
Ejemplo n.º 3
0
        public object[] GetBindedVars()
        {
            object[] bind1 = _value1.GetBindedVars();
            object[] bind2 = _value2.GetBindedVars();

            if (bind1 != null && bind2 != null)
            {
                return(bind1.Union(bind2).ToArray());
            }
            if (bind1 != null)
            {
                return(bind1);
            }
            if (bind2 != null)
            {
                return(bind2);
            }

            return(null);
        }
Ejemplo n.º 4
0
 public object[] GetBindedVars()
 {
     return(_value.GetBindedVars());
 }
Ejemplo n.º 5
0
 public object[] GetBindedVars()
 {
     return(_search.GetBindedVars().Union(_insert.GetBindedVars()).Union(_update.GetBindedVars()).ToArray());
 }
Ejemplo n.º 6
0
 public object[] GetBindedVars()
 {
     return(_field.GetBindedVars());
 }
Ejemplo n.º 7
0
 public object[] GetBindedVars()
 {
     return(_collection.GetBindedVars());
 }