db4o

Constraint.and Method 

links two Constraints for AND evaluation.

[Visual Basic]
Function and( _ 
   ByVal with As Constraint _ 
) As Constraint
[C#]
Constraint and(
   Constraint with
);
[C++]
Constraint* and(
   Constraint* with
);
[JScript]
function and(
   Constraint with
): Constraint;

Parameters

with
the other com.db4o.query.Constraint

Return Value

a new com.db4o.query.Constraint , that can be used for further calls to and() and or()

Remarks

links two Constraints for AND evaluation.

See Also

Constraint Interface | com.db4o.query Namespace