andersonbd27 wrote:
I thought you would so that :-)
Ok, so what about this case?  I've got a team page where I list all the players.  Also on that page is a "create player" button which takes me to a page where I can add a player for that team.  I don't need any team data on that page except for the id since I need to associate the new player with that team.  In the spirit of using the session as minimally as possible, I decide to pass the team id as a request parameter.  Can you accept this case as a valid time that I have the id and not the object?
-Ben
yeah id is enough for the purpose . i prefer loading the team and adding the player to the collection . comments are welcome on the approach that i use .