Summary
Sets the evaluation mode to >.
- Assembly
- Db4objects
.Db4o-2010 .dll - Namespace
- Db4objects
.Db4o .Query - Containing Type
- IConstraint
Syntax
IConstraint Greater()
Remarks
Sets the evaluation mode to >.
For example:
will return all pilots with points > 101.
query.Constrain(typeof(Pilot));
query.Descend("points").Constrain(101).Greater()
will return all pilots with points > 101.
Return Value
Type | Description |
---|---|
IConstraint | this constrain to allow the chaining of method calls. |