Fixed
Details
Assignee
Gunnar MorlingGunnar MorlingReporter
Emmanuel BernardEmmanuel BernardParticipants
Emmanuel BernardGunnar MorlingComponents
Priority
Major
Details
Details
Assignee
Gunnar Morling
Gunnar MorlingReporter
Emmanuel Bernard
Emmanuel BernardParticipants
Emmanuel Bernard
Gunnar Morling
Components
Priority
Created July 3, 2013 at 2:48 PM
Updated February 19, 2015 at 9:56 PM
Resolved February 19, 2015 at 9:56 PM
Once a query is built and its raw results are returned, they need to be converted into entities, entity graphs or projection.
In Hibernate ORM, this is the role of QueryLoader or CustomLoader. These share most of their "loading" code from the AbstractLoader class (esp wrt loading the right graph).
Since OgmLoader is essentially a ripoff the ORM's Loader hierarchy, we could do the same and have an OgmQueryLoader / OgmCustomLoader. The key would be to wrap the data loader by the dialect when executing the native query into a ResultSet. The existing OgmLoader / Ogm*Persister code uses such technique via TupleAsMapResultSet. This could be of inspiration.