Right now I can do this with Linq to SQL
response.write(car.models(0).makes(2).model.car.ID)
of course you wouldn't actually do exactly this but I'm showing how I can go up and down the chain of relationships
Now I want to do the same with simple Class Objects that aren't populated by data from some other source but I can't go "backwards"...
response.write (car.models(0).makes(2)... I can't go back down the relationship here back to car so my question is how can I make it do this? Do I need to populate into a dataset first or something?