Hello,
It seems that we can't update a collection when "OrderColumn" is used.
@Entity public class Order { ... @ElementCollection @OrderColumn public List<Product> getProducts() { return products; } ...
@Embeddable public class Product { ... }
There is a test case attached.
Regards,
Arnaud