Need appropriate pattern for shopping cart
hallo all,
as i've read in some articles there are common way to represent database entity (a row in the table) by an entyty beans.
but, what is an appropriate way to represent a set of rows ? for example - user's shopping cart.
i don't like the common way - to implement shopping cart as session bean and cart record as entity bean ... coz (imho) it is very slow - requires multiple database requests (ejbLoad calls) while loading cart content ... is there another pattern ?

