Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseLink/Examples/JPA/Collectionordering

< EclipseLink‎ | Examples‎ | JPA
Revision as of 16:14, 13 May 2008 by Michael.obrien.oracle.com (Talk | contribs) (Maintain Collection Ordering)

Maintain Collection Ordering

In some applications it is valuable to maintain collection ordering within the Java application. JPA provides support for ordering the target of a collection mapping (OneToMany, ManyToMany) but the order is not preserved in-memory.

Back to the top