Here's the problem I'm having in my asp project.
My shopping cart consists of 3 classes like the picture below.
The class Carrinho has a List of Arranjo wich by itself has a List of Product.
Now I want to display the Carrinho's list and I have a GridView whose data source is an ObjectDataSource that's associated to the Carrinho object. It should display, for now, just the Total property from Arranjo but I keep getting an empty page always. I have debugged the project and the list is definitely not empty.
What am I doing wrong?