Hi,I'm having trouble with unordered association properties...Basically
I get data conflicts because the order on the server does not match the
client (because I may sort them on the client)I'm using the
HibernateAnnotationsAssembler... and after tracing through the code I
can see the conflict is a result of the order test in the
HibernateAssembler's propertiesConflict( ... ) method.Is there any way I
tell it that the association is not ordered?In my Java class I
have:private Set mySet = new
Lin...