I have no any special ideas to have my collection ordered or not to allow duplicates in the collection. In my entity class what should I use ? Set or a List? Is there any consideration in performance wise ?
Lets say we want to perform CRUD operations on this entity . I don't want to have the results ordered . So what should I use ? List or Set in the Entity. What should be user in order to maximize performance
What are the valid cases of using List and Set in an entity considering performance ? Not for ordering or to restrict duplicates?