0
I am using Objectify 4.0.1, and cannot query with a simple return value filter.
My class is this:
@Entity
public class Jogador implements Serializable{
@Id
private Long id;
private String nome;
private String grupo;
(...)
My code trying to search is this:
List <Jogador> j = ofy().load().type(Jogador.class).filter("nome", "Fernando").list();
The list always comes empty. If I remove the filter, all data is returned, usually.