| The User Guide says:
In the following example, the @OrderBy annotations uses the CHAR_LENGTH SQL function to order the Article entities by the size of their contents.
The corresponding code doesn't sort by CHAR_LENGTH(content) but by CHAR_LENGTH(name). The code should be fixed to match the description. |