throws EntityFinderException
{
QueryBuilder<Person> qb = qbf.newQueryBuilder( Person.class );
Person person = templateFor( Person.class );
Query<Person> query = qb.where(
isNotNull( person.email() )
).newQuery( Network.persons() );
verifyUnorderedResults( query, "Joe Doe", "Vivian Smith" );
}
@Test