Exemplo n.º 1
0
        public Select Where(string where)
        {
            ConditionalItem ci = new ConditionalItem(where);

            m_where.Add(ci);
            return(this);
        }
Exemplo n.º 2
0
        public Select Having(string having)
        {
            ConditionalItem ci = new ConditionalItem(having);

            m_having.Add(ci);
            return(this);
        }
Exemplo n.º 3
0
        public Select OrWhere(string where)
        {
            ConditionalItem ci =
                new ConditionalItem(ConditionOperation.Or, where);

            m_where.Add(ci);
            return(this);
        }
Exemplo n.º 4
0
        public Select OrHaving(string having)
        {
            ConditionalItem ci =
                new ConditionalItem(ConditionOperation.Or, having);

            m_having.Add(ci);
            return(this);
        }