public static Negation IsNot(this CommonFactory factory, BooleanExpression expr, Boolean?truthValue) { return(factory.Not(factory.Test(expr, truthValue))); }
public static Negation NotRegexp(this CommonFactory factory, NonBooleanExpression what, NonBooleanExpression pattern) { return(factory.Not(factory.Regexp(what, pattern))); }
public static Negation NotBetween(this CommonFactory factory, NonBooleanExpression left, NonBooleanExpression minimum, NonBooleanExpression maximum) { return(factory.Not(factory.Between(left, minimum, maximum))); }
public static Negation NotIn(this CommonFactory factory, NonBooleanExpression what, params NonBooleanExpression[] values) { return(factory.Not(factory.In(what, values))); }
public static Negation IsNotNull(this CommonFactory factory, NonBooleanExpression what) { return(factory.Not(factory.IsNull(what))); }