Method | Description | |
---|---|---|
Clone ( ) : |
Creates a copy of this WhereTerm
|
|
CreateBetween ( |
Creates a WhereTerm which checks weather a value is in a specifed range. CreateBetween only accepts expressions which yeild a 'Date' or 'Number' values. All expressions must be of compatible types. |
|
CreateCompare ( |
Creates a comparison WhereTerm. A comparison term compares two expression on the basis of their values. Expressions can be of any type but their results must be of comparible types. For instance, you can not compare a database field of type 'date' and a static value of type 'int'. |
|
CreateExists ( string sql ) : |
Creates a WhereTerm which encapsulates SQL EXISTS clause
|
|
CreateIn ( |
Creates a WhereTerm which represents SQL IN clause
|
|
CreateIn ( |
Creates a WhereTerm which represents SQL IN clause
|
|
CreateIsNotNull ( |
Creates a WhereTerm which returns TRUE if an expression is NOT NULL
|
|
CreateIsNull ( |
Creates a WhereTerm which returns TRUE if an expression is NULL
|
|
CreateNotExists ( string sql ) : |
Creates a WhereTerm which encapsulates SQL NOT EXISTS clause
|
|
CreateNotIn ( |
Creates a WhereTerm which represents SQL NOT IN clause
|
|
CreateNotIn ( |
Creates a WhereTerm which represents SQL NOT IN clause
|
|
WhereTerm ( ) : System |
Method | Description | |
---|---|---|
ICloneable ( ) : object |
public static CreateBetween ( |
||
expr | Expression which yeilds the value to be checked | |
lowBound | Expression which yeilds the low bound of the range | |
highBound | Expression which yeilds the high bound of the range | |
return |
public static CreateCompare ( |
||
expr1 | Expression on the left side of the operator | |
expr2 | Expression on the right side of the operator | |
op | CompareOperator | Conditional operator to be applied on the expressions |
return |
public static CreateExists ( string sql ) : |
||
sql | string | Sub query for the EXISTS clause |
return |
public static CreateIn ( |
||
expr | Expression to be looked up | |
values | List of values | |
return |
public static CreateIn ( |
||
expr | Expression to be looked up | |
sql | string | Sub query |
return |
public static CreateIsNotNull ( |
||
expr | ||
return |
public static CreateIsNull ( |
||
expr | Expression to be evaluated | |
return |
public static CreateNotExists ( string sql ) : |
||
sql | string | Sub query for the NOT EXISTS clause |
return |
public static CreateNotIn ( |
||
expr | Expression to be looked up | |
values | ||
return |
public static CreateNotIn ( |
||
expr | Expression to be looked up | |
sql | string | Sub query |
return |