Hi, in a MVC application it is quite common to have a list of objects that you click to see detail and / or edit. When using a relational db, this is achieved by using the primary key or id:
<%= Html.ActionLink(dinner.Title, "Details", new { id=dinner.DinnerID }) %>
How would you do this using an oodb such as db4o?
Thanks!