Property | Type | Description | |
---|---|---|---|
BoolType | BooleanOperator | ||
Expressions | List |
||
Limit | int | ||
Orders | List |
||
Start | int |
Method | Description | |
---|---|---|
Clear ( ) : void |
Completely clears the object so that it may be used over again.
|
|
CopyFrom ( |
Makes this DaoCriteria into a copy of the other one. Any existing orders, expressions, etc. on this one are lost.
|
|
DaoCriteria ( ) : System |
Constructs a blank criteria, which will return all records unless you customize it. All expressions added to it will be ANDed together.
|
|
DaoCriteria ( BooleanOperator howToAddExpressions ) : System |
Constructs a blank criteria, which will return all records unless you customize it.
|
|
DaoCriteria ( IExpression firstExpr ) : System |
Constructs a criteria with one expression. May be handy for cases where you only need one expression.
|
|
DaoCriteria ( IExpression firstExpr, BooleanOperator howToAddExpressions ) : System |
Constructs a criteria with one expression.
|
public CopyFrom ( |
||
other | Criteria to copy everything from. | |
return | void |
public DaoCriteria ( BooleanOperator howToAddExpressions ) : System | ||
howToAddExpressions | BooleanOperator | How expressions will be added together. Determines /// if we do exp1 AND exp2 AND exp3, or if we do /// exp1 OR exp2 OR exp3. |
return | System |
public DaoCriteria ( IExpression firstExpr ) : System | ||
firstExpr | IExpression | The first expression to add. |
return | System |
public DaoCriteria ( IExpression firstExpr, BooleanOperator howToAddExpressions ) : System | ||
firstExpr | IExpression | The first expression to add. |
howToAddExpressions | BooleanOperator | How expressions will be added together. Determines /// if we do exp1 AND exp2 AND exp3, or if we do /// exp1 OR exp2 OR exp3. |
return | System |