Example #1
0
        internal IList <QueryExpression> GetUnion()
        {
            IList <QueryExpression> union;

            if (m_next == null)
            {
                union = new List <QueryExpression>();
            }
            else
            {
                union = m_next.GetUnion();
            }

            union.Insert(0, this);
            return(union);
        }
Example #2
0
 public IList <QueryExpression> GetQueryExpressions()
 {
     return(m_queryExpression.GetUnion());
 }