Exemplo n.º 1
0
        public IQueryBuilder <T> Where(Expression <Func <T, bool> > condition)
        {
            if (condition == null)
            {
                throw new ArgumentNullException(nameof(condition));
            }

            m_where = m_where == s_emptyWhere ? condition : ExpressionsHelper.CombineConditions(m_where, condition);


            return(this);
        }