CodeInsiders.SharpQL.Predicate.NotExists C# (CSharp) Method

NotExists() public static method

public static NotExists ( SelectStatement subQuery ) : Predicate
subQuery SelectStatement
return Predicate
        public static Predicate NotExists(SelectStatement subQuery)
        {
            if (subQuery == null) {
                throw new ArgumentNullException("subQuery");
            }

            return new NotExistsPredicate(subQuery);
        }