Пример #1
0
 public static Negation IsNot(this CommonFactory factory, BooleanExpression expr, Boolean?truthValue)
 {
     return(factory.Not(factory.Test(expr, truthValue)));
 }
Пример #2
0
 public static Negation NotRegexp(this CommonFactory factory, NonBooleanExpression what, NonBooleanExpression pattern)
 {
     return(factory.Not(factory.Regexp(what, pattern)));
 }
Пример #3
0
 public static Negation NotBetween(this CommonFactory factory, NonBooleanExpression left, NonBooleanExpression minimum, NonBooleanExpression maximum)
 {
     return(factory.Not(factory.Between(left, minimum, maximum)));
 }
Пример #4
0
 public static Negation NotIn(this CommonFactory factory, NonBooleanExpression what, params NonBooleanExpression[] values)
 {
     return(factory.Not(factory.In(what, values)));
 }
Пример #5
0
 public static Negation IsNotNull(this CommonFactory factory, NonBooleanExpression what)
 {
     return(factory.Not(factory.IsNull(what)));
 }