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