We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TorpedoQuery capture condition parameter automatically and put named parameter into the HQL query.
Entity entity = from(Entity.class); where(entity.getCode()).eq("mycode"); org.torpedoquery.jpa.Query<Entity> select = select(entity);
If your query is suppose to return one result or nothing use the get() method
Entity result = select.get(entityManager);