Summary
    Used in conjunction with
    
    
will return all pilots with points <= 101.
    
		Db4objects.Db4o.Query.IConstraint.Smaller
    or
    Db4objects.Db4o.Query.IConstraint.Greater
    to create constraints
    like "smaller or equal", "greater or equal".
    For example:query.Constrain(typeof(Pilot));
query.Descend("points").Constrain(101).Smaller().Equal();will return all pilots with points <= 101.
- Assembly
 - Db4objects
.Db4o-2010 .dll  - Namespace
 - Db4objects
.Db4o .Query  - Containing Type
 - IConstraint
 
Syntax
IConstraint Equal()
	Return Value
| Type | Description | 
|---|---|
| IConstraint | this constrain to allow the chaining of method calls. |