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

Difference between revisions of "EclipseLink/Examples/JPA/Collectionordering"

(New page: == Maintain Collection Ordering == In some applications it is valuable to maintain collection ordering within the Java application. JPA provides support for ordering the traget of a colle...)
 
m (Maintain Collection Ordering)
Line 1: Line 1:
 
== 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 traget of a collection mapping (OneToMany, ManyToMany) but the order is not preserved in-memory.
+
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.

Revision as of 16:14, 13 May 2008

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