> from what I have read a ListView model is contained in a List<> object. > Is it possible to use a HashMap instead of a List<>?
A List provides indexed access whereas a Map uses keys (there is no implicit ordering in a Map). In order to use a map, you'd need to wrap it in a list. Can you describe your use case more specifically? Maybe there is another option.
