Exemplo n.º 1
0
        public bool Match(IDataRecord reader)
        {
            if (_condition == null)
            {
                _condition = new Condition1(Condition);
            }

            return(_condition.Match(reader));
        }
Exemplo n.º 2
0
        public bool Match(IDataRecord reader)
        {
            if (string.IsNullOrEmpty(Condition))
            {
                return(true);
            }

            if (_condition == null)
            {
                _condition = new Condition1(Condition);
            }

            return(_condition.Match(reader));
        }