Regular |
 |
Joined: Tue Sep 16, 2003 11:35 am Posts: 93 Location: San Francisco, CA
|
I almost always use Sets instead of lists. Lists have two attributes that make them unappealing to me: the listed entities have to have an entire column just for the list index value; and when you get a List instance, the elements are not ordered continuously in the list but are ordered by the index column with null values in the in between spaces.
Between Set and SortedSet I've been able to handle just about any entity model.
|
|