I have results from
Query query = session.createQuery(\"From Pool as p left join fetch p.poolQuestion as s\");
query and I would like to di
I believe the id accessors don't match the bean naming conventions and that's why the exception is thrown. They should be as follows:
public Integer getId() { return id; } public void setId(Integer i){ id= i; }