Esempio n. 1
0
        public IQuery NotIn(IList values)
        {
            SqlConstraint c = new InConstraint(pending, "not in", values);

            AddConstraint(c);
            return(this);
        }
Esempio n. 2
0
		public IQuery NotIn(IList values)
		{
			SqlConstraint c = new InConstraint(pending, "not in", values);
			AddConstraint(c);
			return this;
		}