And (query directive)
From WandoraWiki
Description
Includes rows which satisfy all inner filtering directives.
Constructor
And(WhereDirective d1,WhereDirective d2,...)
Notes
In simple cases you can avoid using And directive by calling the where method twice. A.where(new And(B,C)) is logically same as A.where(B).where(C) though structurally it resolves to a slightly different query.