Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.0.B1, 4.1.M1
-
None
Description
Exception is thrown when trying to select full entity wrapped in Object[] with paginated query.
Instead of plain ID Object[] is used in page resolution query.
Example:
Property<Artist> artistFull = Property.createSelf(Artist.class);
List<Object[]> a = ObjectSelect.query(Artist.class)
.columns(artistFull)
.pageSize(10)
.select(context);
Note that List<Artist> a = ObjectSelect.query(Artist.class).column(artistFull)... works.