Simple simple = new Simple("should_map_method_expression");
simple.setEnabled(Boolean.TRUE);
entityManager.persist(simple);
// when
List<SimpleDto> result = repository.findByEnabled(new BooleanWrapper(Boolean.TRUE));
// then
boolean found = false;
for (SimpleDto dto : result)
{